Determine if a given integer has more than 5 unique digits. Example: 1234567 => True
Implement this function:
def has_more_than_5_unique_digits(num: int) -> bool:
Write the function only — the arguments are read for you and the return value is printed automatically.
Arguments arrive as one Python literal per line, in this order: num.
Input
1234567
Output
True