index
:
h99
master
My solutions to ninety-nine Haskell problems.
summary
refs
log
blame
commit
diff
log msg
author
committer
range
path:
root
/
31-41
/
32.hs
blob: 585039d5849217e3b05891ef06c10fd1bb08b825 (
plain
) (
tree
)
9db0008
^
1
2
3
4
5
myGCD
::
Int
->
Int
->
Int
myGCD
a
0
=
abs
a
myGCD
a
b
=
myGCD
b
(
a
`
mod
`
b
)