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.
Just discard a dots and convert this binary number to decimal int32 number
This comment is hidden because it contains spoiler information about the solution
https://en.wikipedia.org/wiki/IPv4
IEEE 754
10000000.00100000.00001010.00000001
is how you'd write the IP address128.32.10.1
using the binary representation of numbers instead of decimal.128
,32
,10
, and1
are simply the individual bytes of the number2149583361
- explaining this further may somewhat spoil the task, so if you still don't understand how it works, you really should look up the relation between 32-bit integers and IPv4 yourself.I wonder what the problem could be... Not a kata issue anyway.
WTF is one raising a kata issue while forgetting to copy imports from their IDE.