We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cad1048 commit d5abe40Copy full SHA for d5abe40
python-closure/roots.py
@@ -8,7 +8,7 @@ def root_calculator(number):
8
square_root = make_root_calculator(2, 4)
9
print(square_root(42))
10
11
-cubic_root = make_root_calculator(3, 2)
+cubic_root = make_root_calculator(3)
12
print(cubic_root(42))
13
14
@@ -24,5 +24,5 @@ def __call__(self, number):
24
square_root = RootCalculator(2, 4)
25
26
27
-cubic_root = RootCalculator(3, 2)
+cubic_root = RootCalculator(3)
28
0 commit comments