Return true if the sum of ASCII values of the first string is same as the sum of ASCII values of the second string, otherwise return false.
sameAscii("a", "a") ➞ true
sameAscii("AA", "B@") ➞ true
sameAscii("EdAbIt", "EDABIT") ➞ falseIf you need some help with ASCII codes, check the Resources tab for an image of all ASCII codes used in this challenge.