1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-19 22:16:57 +02:00
CodeWars/5kyu/where_my_anagrams_at/solution.js

16 lines
299 B
JavaScript
Raw Normal View History

function anagrams(word, words) {
word = word.split('');
word.sort();
word = word.join('');
let result = [];
for (let testedWord of words) {
twSorted = testedWord.split('');
twSorted.sort();
if (word == twSorted.join(''))
result.push(testedWord);
}
return result;
}