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 94bd26d commit 8e73ab0Copy full SHA for 8e73ab0
exercises/34-a_aa_aaa_aaaa/solution.hide.py
@@ -1,6 +1,9 @@
1
+# Your code here
2
def computed_value(param):
3
n1 = int( "%s" % param )
4
n2 = int( "%s%s" % (param,param) )
5
n3 = int( "%s%s%s" % (param,param,param) )
6
n4 = int( "%s%s%s%s" % (param,param,param,param) )
- return (n1+n2+n3+n4)
7
+ return (n1+n2+n3+n4)
8
+
9
+print(computed_value(9))
0 commit comments