From cb06e5a407f4811ea8516cde7a572fb1e1d49617 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20Hakan=20Y=C4=B1ld=C4=B1r=C4=B1m?= Date: Tue, 31 Mar 2026 22:33:35 +0300 Subject: [PATCH] Implement custom power and equation functions Added custom power and equation functions with type checks. --- Week04/functions_ahmet_hakan_yildirim.py | 33 ++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Week04/functions_ahmet_hakan_yildirim.py diff --git a/Week04/functions_ahmet_hakan_yildirim.py b/Week04/functions_ahmet_hakan_yildirim.py new file mode 100644 index 00000000..be511731 --- /dev/null +++ b/Week04/functions_ahmet_hakan_yildirim.py @@ -0,0 +1,33 @@ +custom_power = lambda x=0, /, e=1: x ** e + + +def custom_equation(x: int = 0, y: int = 0, /, + a: int = 1, b: int = 1, *, + c: int = 1) -> float: + """ + Computes a custom equation. + + :param x: positional-only + :param y: positional-only + :param a: positional or keyword + :param b: positional or keyword + :param c: keyword-only + :return: result as float + """ + + for val in (x, y, a, b, c): + if not isinstance(val, int): + raise TypeError("Arguments must be integers") + + return float((x ** a + y ** b) / c) + + +def fn_w_counter() -> (int, dict[str, int]): + if not hasattr(fn_w_counter, "count"): + fn_w_counter.count = 0 + + fn_w_counter.count += 1 + + module_name = __name__.split('.')[-1] + + return fn_w_counter.count, {module_name: fn_w_counter.count}