mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-01 01:09:03 +03:00
10 lines
312 B
Idris
10 lines
312 B
Idris
|
range : Integer -> Integer -> List Integer
|
||
|
range bottom top
|
||
|
= if bottom > top then []
|
||
|
else bottom :: range (bottom + 1) top
|
||
|
|
||
|
pythag : Integer -> List (Integer, Integer, Integer)
|
||
|
pythag top
|
||
|
= [(x, y, z) | z <- range 1 top, y <- range 1 z, x <- range 1 y,
|
||
|
x * x + y * y == z * z]
|