forked from M3-Academy/challenge-algorithms-v2.0
feature #1
@ -1,4 +1,28 @@
|
||||
export function isAnagram(word1, word2) {
|
||||
// implementar logica aqui
|
||||
|
||||
if (word1.length !== word2.length) {
|
||||
return false;
|
||||
} else {
|
||||
if (
|
||||
word1.toLowerCase().split("").sort().join("") ===
|
||||
word2.toLowerCase().split("").sort().join("")
|
||||
) {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -5,23 +5,23 @@ describe("isAnagram", () => {
|
||||
expect(isAnagram("roma", "amor")).toBe(true);
|
||||
});
|
||||
|
||||
ít("Dever retornar true quando passamos as palavras \"Buckethead\" e \"DeathCubeK\"", () => {
|
||||
it("Dever retornar true quando passamos as palavras \"Buckethead\" e \"DeathCubeK\"", () => {
|
||||
expect(isAnagram("Buckethead", "DeathCubeK")).toBe(true);
|
||||
});
|
||||
|
||||
ít("Dever retornar true quando passamos as palavras \"Twoo\" e \"WooT\"", () => {
|
||||
it("Dever retornar true quando passamos as palavras \"Twoo\" e \"WooT\"", () => {
|
||||
expect(isAnagram("Twoo", "WooT")).toBe(true);
|
||||
});
|
||||
|
||||
ít("Dever retornar false quando passamos as palavras \"dumble\" e \"bumble\"", () => {
|
||||
it("Dever retornar false quando passamos as palavras \"dumble\" e \"bumble\"", () => {
|
||||
expect(isAnagram("dumble", "bumble")).toBe(false);
|
||||
});
|
||||
|
||||
ít("Dever retornar false quando passamos as palavras \"ound\" e \"round\"", () => {
|
||||
it("Dever retornar false quando passamos as palavras \"ound\" e \"round\"", () => {
|
||||
expect(isAnagram("ound", "round")).toBe(false);
|
||||
});
|
||||
|
||||
ít("Dever retornar false quando passamos as palavras \"apple\" e \"pale\"", () => {
|
||||
it("Dever retornar false quando passamos as palavras \"apple\" e \"pale\"", () => {
|
||||
expect(isAnagram("apple", "pale")).toBe(false);
|
||||
});
|
||||
});
|
Loading…
Reference in New Issue
Block a user