fix: optimizacão de isAnagram e maxValue

This commit is contained in:
José Gregorio Mata Rodríguez 2022-10-29 18:06:56 -02:00
parent bfd4a7f93f
commit 10ef9194b8
2 changed files with 27 additions and 24 deletions

View File

@ -1,5 +1,7 @@
export function isAnagram(word1, word2) { export function isAnagram(word1, word2) {
// implementar logica aqui // implementar logica aqui
if ((!word1) || (!word2))
return false;
if (word1 != word2){ if (word1 != word2){
if (word1.lenght == word2.lenght){ if (word1.lenght == word2.lenght){
word1 = word1.toLowerCase(); word1 = word1.toLowerCase();
@ -15,8 +17,9 @@ export function isAnagram(word1, word2) {
else else
return false; return false;
} }
else
return false;
}
else return false; else return false;
}
else return false;
} }