1 ! Copyright (c) 2007, 2008 Aaron Schaefer.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: ascii kernel math.ranges math.text.english sequences ;
6 ! http://projecteuler.net/index.php?section=problems&id=17
11 ! If the numbers 1 to 5 are written out in words: one, two, three, four, five;
12 ! there are 3 + 3 + 5 + 4 + 4 = 19 letters used in total.
14 ! If all the numbers from 1 to 1000 (one thousand) inclusive were written out
15 ! in words, how many letters would be used?
17 ! NOTE: Do not count spaces or hyphens. For example, 342 (three hundred and
18 ! forty-two) contains 23 letters and 115 (one hundred and fifteen) contains
25 : euler017 ( -- answer )
26 1000 [1,b] SBUF" " clone [ number>text over push-all ] reduce [ Letter? ] count ;
28 ! [ euler017 ] 100 ave-time
29 ! 15 ms ave run time - 1.71 SD (100 trials)