forked from M3-Academy/challenge-algorithms-v2.0
feat: Resolvido questao isAnagram
This commit is contained in:
parent
8e38569289
commit
5c45023156
@ -1,4 +1,11 @@
|
|||||||
export function isAnagram(word1, word2) {
|
export function isAnagram(word1, word2) {
|
||||||
// implementar logica aqui
|
// implementar logica aqui
|
||||||
|
//1º => Ver se as strings tem a mesma quantidade de letras
|
||||||
}
|
if (word1.length !== word2.length) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
//2º => Criar duas variáveis para as novas strings
|
||||||
|
let newTest = word1.toLowerCase().split("").sort().join("");
|
||||||
|
let newOriginal = word2.toLowerCase().split("").sort().join("");
|
||||||
|
return newTest === newOriginal;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user