Back to course home
0% completed
Vote For New Content
One line solution using javascript
Made Doddy Adi Pranatha
Feb 16, 2024
function isAnagram(s, t) { // TODO: Write your code here return s.split("").sort().join("") === t.split("").sort().join(""); }
0
0
Comments
Comments