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 569c3ca commit b545fd8Copy full SHA for b545fd8
exercise_solutions/q2a_int_length.py
@@ -15,7 +15,7 @@ def len_int(n):
15
assert len_int(962306349871524124750813401378124) == 33
16
17
try:
18
- assert len_int('a')
+ len_int('a')
19
except TypeError as e:
20
assert str(e) == 'provide only integer input'
21
0 commit comments