You are viewing a single comment's thread. Return to all comments →
Python3
def stringConstruction(s):
return sum([1 for _ in set(s)])
Seems like cookies are disabled on this browser, please enable them to open this website
String Construction
You are viewing a single comment's thread. Return to all comments →
Python3
def stringConstruction(s):