From 6b7fddd1d0ea63f007bcc2079ab1d0a237e4593d Mon Sep 17 00:00:00 2001 From: ADARSH <67700780+ADARSHKM123@users.noreply.github.com> Date: Tue, 3 Mar 2026 16:51:03 +0530 Subject: [PATCH] Fix square_number function output in markdown Corrected the square_number function to return n raised to the power of n. --- 11_Day_Functions/11_functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/11_Day_Functions/11_functions.md b/11_Day_Functions/11_functions.md index cbfe621..cf116c8 100644 --- a/11_Day_Functions/11_functions.md +++ b/11_Day_Functions/11_functions.md @@ -406,7 +406,7 @@ def square_number (n): return n ** n def do_something(f, x): return f(x) -print(do_something(square_number, 3)) # 9 +print(do_something(square_number, 3)) # 27 ``` 🌕 You achieved quite a lot so far. Keep going! You have just completed day 11 challenges and you are 11 steps a head in to your way to greatness. Now do some exercises for your brain and muscles.