Problem 112
コンテンツ
http://projecteuler.net/index.php?section=problems&id=112
ナイーブな実装。遅くないので、よしとする。
map2 f xs = zipWith f xs $ tail xs descend, ascend :: Integer -> Bool descend = and.map2 (>=).show ascend = and.map2 (<=).show main = print.snd.head.filter f.scanl add (,1) $ [1..] where f (n,d) = 100*n == d add (m,_) x | descend x || ascend x = (m+1,x) | otherwise = (m,x)
作成者 Toru Mano
最終更新時刻 2023-01-01 (c70d5a1)