Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Best Number solution in Creative category for The Best Number Ever by xiongbiao
# migrated from python 2.7
from functools import reduce
def checkio():
return reduce(lambda a,b: a + ord(b), "Best Number", 0)
July 18, 2015