3
Alexandra_Berger
1 6
35/ 45
Alexandra Berger
Last seen 1 year ago
Member for 2 years, 7 months, 9 days
Difficulty Normal
Commented a forum post "what is wrong in my solution?" created by Alexandra_Berger
So my full function now looks as follows: def number_length(a: int) -> int: counter = 0
Commented a forum post "what is wrong in my solution?" created by Alexandra_Berger
makes sense! Thanksie!
Liked a comment created by Phil15 for forum post "what is wrong in my solution?"
`a // 10` does not "cut the last digit" but `a //= 10` would (equivalent to `a = a // 10`)

At some 
Created a forum post "what is wrong in my solution?"
I tried the code in other IDE (without function), the body seems to work properly. What causes an