You are viewing a single comment's thread. Return to all comments →
from collections import Counter def gameOfThrones(s): freq=Counter(s) c=0 for i in freq: if freq[i]%2==1: c+=1 return 'NO' if c>1 else 'YES'
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 →