1
0
mirror of https://github.com/simon987/bingo.git synced 2025-04-15 15:16:42 +00:00
2020-01-26 17:09:52 -05:00

5 lines
101 B
Python

def is_valid_id(s: str):
return all(c.isalnum() or c in "_-" for c in s) and 16 >= len(s) >= 3