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.
defmakeAnagram(a,b):# Write your code herea_list=list(a)b_list=list(b)remove_b=0forlinb_list:iflina_list:a_list.remove(l)else:remove_b+=1remove_a=len(a_list)#unmatchedlettersremainedinthislistreturnremove_a+remove_b
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Strings: Making Anagrams
You are viewing a single comment's thread. Return to all comments →
Intuitive, Readable Python code: O(N) complexity.