Minimize String Length

1
2
3
class Solution:
    def minimizedStringLength(self, s: str) -> int:
       return len(set((s)))