You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Have the function UsernameValidation(`str`) take the `str` parameter being passed and determine if the string is a valid username according to the following rules:
2
+
3
+
# 1. The username is between 4 and 25 characters.
4
+
# 2. It must start with a letter.
5
+
# 3. It can only contain letters, numbers, and the underscore character.
6
+
# 4. It cannot end with an underscore character.
7
+
8
+
#If the username is valid then your program should return the string `true`, otherwise return the string `false`.
0 commit comments