Files
project_euler/e_17.py
Julien Lengrand-Lambert 8dac6fea28 Solves Problem 22.
Works either on problem 17 or 18.
2012-01-17 11:00:12 +01:00

27 lines
787 B
Python
Executable File

#!/usr/bin/env python
"""
##---
# Julien Lengrand-Lambert
#Created on : Tue Jan 17 10:57:41 CET 2012
#
# DESCRIPTION : Solves problem 17 of Project Euler
If the numbers 1 to 5 are written out in words: one, two, three, four, five,
then there are 3 + 3 + 5 + 4 + 4 = 19 letters used in total.
If all the numbers from 1 to 1000 (one thousand) inclusive were written out in
words, how many letters would be used?
NOTE: Do not count spaces or hyphens. For example, 342 (three hundred and
forty-two) contains 23 letters and 115 (one hundred and fifteen) contains 20
letters. The use of "and" when writing out numbers is in compliance with
British usage.
##---
"""
def fun():
"""
"""
return 1
if __name__ == '__main__':
print "Answer : %d" % (fun())