You are viewing a single comment's thread. Return to all comments →
My python3
def gameOfThrones(s): # Write your code here odd_count = {i for i in dict(Counter(s)).items() if i[1]%2!=0} return 'YES' if len(odd_count)<2 else 'NO'
Seems like cookies are disabled on this browser, please enable them to open this website
Game of Thrones - I
You are viewing a single comment's thread. Return to all comments →
My python3