You are viewing a single comment's thread. Return to all comments →
print(max(list(map(str.isalnum, s)))) print(max(list(map(str.isalpha, s)))) print(max(list(map(str.isdigit, s)))) print(max(list(map(str.islower, s)))) print(max(list(map(str.isupper, s))))
Seems like cookies are disabled on this browser, please enable them to open this website
An unexpected error occurred. Please try reloading the page. If problem persists, please contact support@hackerrank.com
String Validators
You are viewing a single comment's thread. Return to all comments →