We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Algorithms
- Strings
- Making Anagrams
- Discussions
Making Anagrams
Making Anagrams
Sort by
recency
|
763 Discussions
|
Please Login in order to post a comment
Here is my c++ solution, you can watch the explanation here : https://youtu.be/B4pZbX0VzzU
int makingAnagrams(string s1, string s2) { unordered_map f1,f2;
}
Here is my Python solution!
Perl:
My answer with Typescript, simple