Skip to content

Commit 8f44a1a

Browse files
Update functions_irem_dilsat_kose.py
1 parent 758df7f commit 8f44a1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Week03/functions_irem_dilsat_kose.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
custom_power = lambda x, /, e=1 : x**e
22

3-
def custom_equation(x, y, /, a=1, b=1, *, c=1)-> float:
3+
def custom_equation(x: int, y: int, /, a: int = 1, b: int = 1, *, c: int = 1)-> float:
44
"""
55
This function computes the expression (x**a + y**b)/c
66

0 commit comments

Comments
 (0)