Added tests for Strings algorithms (#390)

* test: added tests for check anagram function
This commit is contained in:
Alexandre Xavier
2020-10-04 14:38:48 -03:00
committed by GitHub
parent e156fe36a1
commit c5fc353c32
13 changed files with 8250 additions and 22 deletions

View File

@ -21,5 +21,4 @@ const checkPalindrome = (str) => {
return 'Palindrome'
}
console.log(checkPalindrome('madam'))
console.log(checkPalindrome('abcd'))
export { checkPalindrome }