2008-10-24から1日間の記事一覧

おなかすいた

今朝2時頃に「気がついたら昨日何も食べていない!」っていいながら、でも別に空腹でもなかったので食べなかったんだが、今すごくおなかがすいてきた。冷蔵庫の中の少し表面が黒くなった人参とか、キャベツとか、ニラとかを刻んでいためている。しまった。一…

Haskell続き

眠さを通り越してハイになってきた。 id:ujihisa progress_turnが[Int]を返すのは妥当なのかなあ。(Int, Int, Int)のがいいきが。 data Score = Score Int Int Int deriving Show add :: Score -> Score -> Score add (Score x y z) (Score a b c) = (Score …

Haskellのガード勉強中

before between :: Int -> Int -> Int -> Bool between x y z = if ((y < x && x < z) || (z < x && x < y)) then True else False after between :: Int -> Int -> Int -> Bool between x y z | y < x && x < z = True | z < x && x < y = True | otherwise…