@@ -1,4 +1,4 @@
def is_valid_id(s: str):
return all(c.isalnum() or c in "_-" for c in s)
return all(c.isalnum() or c in "_-" for c in s) and 16 >= len(s) >= 3
The note is not visible to the blocked user.