You are viewing a single comment's thread. Return to all comments →
I'm quite suprised how easy this problem is given that it's worth 25 points. Here's my Python solution!
def stringConstruction(s): return len(set(list(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 →
I'm quite suprised how easy this problem is given that it's worth 25 points. Here's my Python solution!