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.
- Strings: Making Anagrams
- Discussions
Strings: Making Anagrams
Strings: Making Anagrams
Sort by
recency
|
2138 Discussions
|
Please Login in order to post a comment
Java Solution using int array for 26 English letters:
Python Solution using counter
Java:
C solution
int deletions_reqd = 0; int len_a = strlen(a); int len_b = strlen(b); int max = 0; int i = 0;
C#