Merge pull request 'fix: optimizacão de isAnagram e maxValue' (#2) from feature-algorithms into master

Reviewed-on: #2
This commit is contained in:
José Gregorio Mata Rodríguez 2022-10-29 20:08:14 +00:00
commit e25d232708
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,7 +17,8 @@ export function isAnagram(word1, word2) {
else else
return false; return false;
} }
else return false; else
return false;
} }
else return false; else return false;