diff --git a/08-isAnagram/index.js b/08-isAnagram/index.js index 918308a..64b56b2 100644 --- a/08-isAnagram/index.js +++ b/08-isAnagram/index.js @@ -1,4 +1,14 @@ export function isAnagram(word1, word2) { // implementar logica aqui - + if(word1.length == word2.length){ + const words1 = word1.toUpperCase().split("").sort(); + const words2 = word2.toUpperCase().split("").sort(); + if (words1.join() == words2.join()){ + return true + }else { + return false + } + } else { + return false + } } \ No newline at end of file