Skip to content

Commit 8e73ab0

Browse files
authored
Update solution.hide.py
1 parent 94bd26d commit 8e73ab0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
# Your code here
12
def computed_value(param):
23
n1 = int( "%s" % param )
34
n2 = int( "%s%s" % (param,param) )
45
n3 = int( "%s%s%s" % (param,param,param) )
56
n4 = int( "%s%s%s%s" % (param,param,param,param) )
6-
return (n1+n2+n3+n4)
7+
return (n1+n2+n3+n4)
8+
9+
print(computed_value(9))

0 commit comments

Comments
 (0)