-
Completed at: 2023-07-01T07:39:33.655Z
-
Completed languages: python
-
Tags: Fundamentals
-
Rank: 8 kyu
You'll be given a string, and have to return the sum of all characters as an int. The function should be able to handle all printable ASCII characters.
Examples:
uniTotal("a") == 97
uniTotal("aaa") == 291