Project Euler 22 - Names Scores
Project Euler 22 - Names Scores
Official link: https://projecteuler.net/problem=22
Thought Process
Thought Process
We can use https://www.asciitable.com/ to quickly calculate the name sum.
Use the python ord function to return the ASCII value of a character
A starts at 65 so simply go through a name and add ord(character) - 64
Interactive Code
Interactive Code
Input a Name (yourinput)
Code will output the name sum of yourinput