Skip to content

Latest commit

 

History

History

ascii-total

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
  • Completed at: 2023-07-01T07:39:33.655Z

  • Completed languages: python

  • Tags: Fundamentals

  • Rank: 8 kyu

Description

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