forked from M3-Academy/challenge-algorithms-v2.0
feat: adicionando solução do 8° desafio
This commit is contained in:
parent
e7ebd59708
commit
e78fc6780f
@ -1,4 +1,11 @@
|
||||
export function isAnagram(word1, word2) {
|
||||
// implementar logica aqui
|
||||
|
||||
const Anagram = str =>
|
||||
str
|
||||
.toLowerCase()
|
||||
.replace(/[^a-z0-9]/gi, '')
|
||||
.split('')
|
||||
.sort()
|
||||
.join('');
|
||||
return Anagram(word1) === Anagram(word2);
|
||||
}
|
Loading…
Reference in New Issue
Block a user