Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
重複の可能性: Haskell でグリッドを生成する方法を知っている人はいますか?
Haskell に [[1,2],[3,4]] のようなリストのリストからより読みやすいものに移動できる関数があるかどうか疑問に思っていました:
[[1,2]
[3,4]]
ありがとう!
関数を使用してunlines、行のリストから単一の文字列を取得できます。[[Int]]を使用して文字列のリストを取得できますmap show。これを で画面に印刷できますputStr。一緒に、あなたは得る:
unlines
[[Int]]
map show
putStr
putStr . unlines $ map show [[1, 2], [3, 4]]
これは次を印刷します:
[1,2] [3,4]