Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
great solution! I like it, man!
This comment is hidden because it contains spoiler information about the solution
This is surely clever, but probably shouldn't be used or marked as best practice. I'd have to performance test to be sure, but allocating an array on heap seems like it would be much slower than a branch with no array allocation. Maybe I'm wrong, in which case this would be a nice answer, but the bitwise and will always be better for both performance and readability.
Use assert_equals
hahaha really cool solution :D
test_expect
...plus all the below issues
This comment is hidden because it contains spoiler information about the solution
to_s(2)
(see this)There should be some tests with the minimum width less than the number of digits. Random tests would be nice too.
This seems resolved now : "The second optional argument passes the minimum length. If your binary number is shorter than this length, then pad zeros on the left hand side to fulfill this minimum length ... "
I'm literally days in learning Ruby, and this simple solution has already taught me so much and made me think of so many more things that could be done with this concept, THANK YOU
Since it's explicitly mentioned in the description, there should be a test to check that
String#to_i(int)
isn't used.Needs random tests
Also base conversion is a duplicate
According to the description, the second argument is the number of leading zeros, but the tests treat it as a full string length including other digits.