Skip to content

Commit cffd174

Browse files
Update functions_fevzi_bagriacik.py
1 parent 2c58558 commit cffd174

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Week04/functions_fevzi_bagriacik.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def custom_equation(x: int = 0, y: int = 0, /, a: int = 1, b: int = 1, *, c: int
1212
:param c: Fifth number (keyword only, default 1)
1313
:return: (x ** a + y ** b) / c
1414
"""
15-
return float((x + y + a + b) / c)
15+
return float((x ** a + y ** b) / c)
1616

1717
def fn_w_counter() -> (int, dict[str, int]):
1818
if not hasattr(fn_w_counter, 'total_count'):

0 commit comments

Comments
 (0)