mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-11-28 02:23:44 +03:00
4 lines
145 B
Idris
4 lines
145 B
Idris
|
pythag : Int -> List (Int, Int, Int)
|
||
|
pythag n = [ (x, y, z) | z <- [1..n], y <- [1..z], x <- [1..y],
|
||
|
x*x + y*y == z*z ]
|