mirror of
https://github.com/PaddiM8/kalker.git
synced 2024-12-12 17:40:52 +01:00
11 lines
136 B
Plaintext
11 lines
136 B
Plaintext
f(x) = {
|
|
f(x - 1) if x >= 1
|
|
x otherwise
|
|
}
|
|
|
|
g(x, y) = {
|
|
g(x - 1, y + 1) if x >= 1
|
|
y otherwise
|
|
}
|
|
|
|
f(5) = 0 and g(5, 0) = 5 |