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.Can someone please explain to me why 10000000.00100000.00001010.00000001 is suddenly 2149583361? I cannot find sufficient information about this and I am lost.
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.
All the time I'm getting this:
"./src/main/java/CountingDuplicates.java:3: error: cannot find symbol
List charList = new ArrayList<>();
^
symbol: class List
location: class CountingDuplicates
./src/main/java/CountingDuplicates.java:3: error: cannot find symbol
List charList = new ArrayList<>();
^
symbol: class ArrayList
location: class CountingDuplicates
2 errors"
WTF?!