Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
Функция Аккермана
KateWilson
Aug 20th, 2019
196
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
Python
0.19 KB
| None
|
0
0
raw
download
clone
embed
print
report
def
Akkerman
(
n
,
m
)
:
if
n
==
0
:
return
(
m+
1
)
if
n
!=
0
and
m
==
0
:
return
Akkerman
(
n-
1
,
1
)
if
n
>
0
and
m
>
0
:
return
(
Akkerman
(
n-
1
)
,
Akkerman
(
n
,
m-
1
)
)
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
✅ Make $2500 in 15 minutes
JavaScript | 11 sec ago | 0.25 KB
✅ Make huge profits on trading
JavaScript | 12 sec ago | 0.25 KB
✅ Crypto Exchange Exploit
JavaScript | 23 sec ago | 0.25 KB
✅ Crypto Exchange Exploit
JavaScript | 25 sec ago | 0.25 KB
⭐ Trading Profit Method ⭐
JavaScript | 34 sec ago | 0.25 KB
⭐ Free SOLANA Method ⭐
JavaScript | 42 sec ago | 0.25 KB
⭐⭐⭐Make $1500 in 20 minutes⭐⭐⭐
Java | 43 sec ago | 0.06 KB
⭐ MAKE $2500 IN 15 MIN ⭐
JavaScript | 45 sec ago | 0.25 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!