Grokking the Coding Interview: Patterns for Coding Questions
Ask Author
Back to course home

0% completed

Vote For New Content
Made Doddy Adi Pranatha
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