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.
l=len(s)
sset=set(s)
if len(set(Counter(s).values()))<=1:
return "YES"
f=False
for ii in sset:
if len(set(Counter(s.replace(ii,"",1)).values()))<=1:
f=True
break
if f:
return "YES"
else:
return "NO"
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Sherlock and the Valid String
You are viewing a single comment's thread. Return to all comments →
def isValid(s):