mirror of
https://github.com/simon987/bingo.git
synced 2025-04-04 07:22:58 +00:00
5 lines
101 B
Python
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
|
|
|