Skip to content

Commit

Permalink
Update functions_havva_beste_tekceli.py
Browse files Browse the repository at this point in the history
  • Loading branch information
bestetekceli committed Oct 22, 2023
1 parent 831de88 commit d61e2cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Week03/functions_havva_beste_tekceli.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
custom_power = lambda x = 0 , / ,e = 1 : x ** e

def custom_equation(x = 0, y = 0, / , a = 1, b = 1, * , c = 1) -> float:
def custom_equation(x: int = 0, y: int = 0, /, a: int = 1, b: int = 1, *, c: int = 1) -> float:
"""
Calculate the result of a custom equation:
:param x: number 1
Expand Down

0 comments on commit d61e2cd

Please sign in to comment.