2008-01-06 21:18:59 -05:00
|
|
|
! Copyright (c) 2007 Aaron Schaefer.
|
2007-12-21 11:43:26 -05:00
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2008-02-11 15:14:56 -05:00
|
|
|
USING: kernel math.ranges math.text.english sequences sequences.lib strings
|
|
|
|
ascii ;
|
2007-12-21 11:43:26 -05:00
|
|
|
IN: project-euler.017
|
|
|
|
|
|
|
|
! http://projecteuler.net/index.php?section=problems&id=17
|
|
|
|
|
|
|
|
! DESCRIPTION
|
|
|
|
! -----------
|
|
|
|
|
|
|
|
! If the numbers 1 to 5 are written out in words: one, two, three, four, five;
|
|
|
|
! 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.
|
|
|
|
|
2007-12-24 04:36:40 -05:00
|
|
|
|
2007-12-21 11:43:26 -05:00
|
|
|
! SOLUTION
|
|
|
|
! --------
|
|
|
|
|
|
|
|
: euler017 ( -- answer )
|
2007-12-24 13:07:46 -05:00
|
|
|
1000 [1,b] SBUF" " clone [ number>text over push-all ] reduce [ Letter? ] count ;
|
2007-12-24 04:36:40 -05:00
|
|
|
|
|
|
|
! [ euler017a ] 100 ave-time
|
2008-01-06 21:18:59 -05:00
|
|
|
! 14 ms run / 0 ms GC ave time - 100 trials
|
2007-12-24 04:36:40 -05:00
|
|
|
|
2007-12-21 11:43:26 -05:00
|
|
|
MAIN: euler017
|