mirror of
https://github.moeyy.xyz/https://github.com/trekhleb/javascript-algorithms.git
synced 2024-11-13 06:23:00 +08:00
corrected the code and added indentation
This commit is contained in:
parent
8b2f83e6c7
commit
672e2864a8
@ -1,24 +1,21 @@
|
||||
// TO CHECK IF TWO STRINGS ARE ANAGRAM OR NOT
|
||||
|
||||
function anagram(word1, word2){
|
||||
var sorted1 = word1.split("").sort().join("");//SORTING WORD1
|
||||
var sorted2 = word2.split("").sort().join("");//SORTING WORD2
|
||||
var sorted1 = word1.split("").sort().join(""); //SORTING WORD1
|
||||
var sorted2 = word2.split("").sort().join(""); //SORTING WORD2
|
||||
|
||||
//COMPARING LENGTH AND CHECKING ===
|
||||
|
||||
if (sorted1.length == sorted2.length && sorted1 === sorted2) {
|
||||
return true;
|
||||
}
|
||||
|
||||
else{
|
||||
return false;
|
||||
}
|
||||
//COMPARING LENGTH AND CHECKING ===
|
||||
if (sorted1.length == sorted2.length && sorted1 === sorted2) {
|
||||
return true;
|
||||
}
|
||||
else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
if(anagram(word1,word2)){
|
||||
if(anagram("binary", "brainy")){
|
||||
alert("AN ANAGRAM");
|
||||
}
|
||||
else{
|
||||
alert("NOT AN ANAGRAM");
|
||||
}
|
||||
anagram("sasdas", "sdasda");
|
||||
|
Loading…
Reference in New Issue
Block a user