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
Exercise solution_is_pure_number: we're checking if char in '0123456789', but the string might be a digit in another alphabet (e.g. Devangari). Built-in str.isdigit() will behave correctly, while the simple check does not