• Selindian's Activity

I really like this article and the call to write clean and readable code. For me this does not mean
Liked a comment created by Red_Ale for forum post "Is leaderboard counting correctly the points?"
No issues for the delay.

Noted. Are these rules available anywhere?
Liked a comment created by lezeroq for forum post "Additional test case needed for Goes Right After"
+1 test 

    assert goes_after("abcd", "e", "c") == False

Yes, I agree. It makes sense to add a test like that.
Liked a comment created by oduvan for forum post "How to get I can sing badge?"
Thank you for pointing it out. Looks like I need to review some old badges as well
Liked a comment created by Phil15 for forum post "How to get I can sing badge?"
After looking at badges once in a while and wandering what that is, and a web search I should have d
I cannot find a mission called 'Musical module' which is required for 'I can sing' badge. From other
Liked forum post "Electronic station maxed at 97%" created by ddavidse
I finished all exercises in Electronic Station, but my completion is listed as 97%. It used to be 10
Commented a forum post "'four five six' are words" created by CraZZy_RAVEN
When you inner loop comes to the item '6', the if returns `False`. So you code will only return `Tru
Commented a forum post "How to calculate integer in base B" created by Selindian
With all your explanations I was able to solve the changed mission.: https://py.checkio.org/mission/
Commented a forum post "How to calculate integer in base B" created by Selindian
Thank you very much for the explanation. I think that helps me further. I will try to create a solut
Commented a forum post "How to calculate integer in base B" created by Selindian
Thank you very much for the explanation. I think that helps me further. I will try to create a solut
Liked a comment created by Phil15 for forum post "How to calculate integer in base B"
    2853 = 2 * 10**3 + 8 * 10**2 + 5 * 10 + 3

    <any-positive-integer> = ... + a * b ** 3 + a * b
Liked a comment created by kdim for forum post "How to calculate integer in base B"
_how to calculate the "integer in base B" number_

I know two ways:

1. math using logarithms
1. ite
Liked a comment created by kdim for forum post "How to calculate integer in base B"
1. convert the number from "10" base to the "B" base number system
1. check it for palindrome

Input
Since I am not a native English speaker and not a math whiz, I am left wondering how I even calculat
This is a nice summary. Thank you very much!