Palindrome

Mutation testing badge NuGet Downloads

lyndychivs.Palindrome

A simple string extension library for detecting Palindromes.

Examples

string input = "racecar";
bool isPalindrome = input.IsPalindrome(); // true

[!IMPORTANT] The library does not treat single characters as palindromes.

string input = "a";
bool isPalindrome = input.IsPalindrome(); // false

Tests

All Unit Tests can be found under the Palindrome.Tests namespace.

Package

Available on: