Skip to content

Commit 21483c7

Browse files
committed
Checking SSH
1 parent f54c6a9 commit 21483c7

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.DS_Store

0 Bytes
Binary file not shown.

Recursion/Power.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Created by Elshad Karimov
2+
# Copyright © 2023 AppMillers. All rights reserved.
3+
4+
# Question 2 - How to calculcate the power of number using recursion?
5+
6+
def power(base, exp):
7+
assert int(exp) == exp, 'The exponent must be integer number only'
8+
if exp == 0:
9+
return 1
10+
elif base == 0:
11+
return 0
12+
elif exp < 0:
13+
return 1/base * power(base, exp+1)
14+
return base * power(base, exp-1)
15+
16+
print(power(0,-1))

0 commit comments

Comments
 (0)