What is Nostr?
YoshikuniJujo
npub1a7y…fdm2
2025-02-07 02:53:07

YoshikuniJujo on Nostr: https://www.reddit.com/r/haskell/comments/2cum9p/i_did_a_haskell_fizzbuzz/ ...

https://www.reddit.com/r/haskell/comments/2cum9p/i_did_a_haskell_fizzbuzz/

きれいなFizzBuzzみつけた。

モノイドをうまく使ってる。
たぶん
instance Monoid a => Monoid (Maybe a) where
Just a <> Just b = Just (a <> b)
Just a <> Nothing = Just a
Nothing <> Just b = Just b
_ <> _ = Nothing

的に定義されているのをうまく使っている。
Author Public Key
npub1a7y7u324paehw2zdx8jfl3t72ue0ls4etfalxhg0z2gad738savqhxfdm2