Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

Varp mathematics

Joined
Apr 18, 2015
Messages
408
Edit: It was early in the morning; I zero padded the end instead of the beginning of the string..
 
Last edited:
Mod Automation
Joined
Jul 26, 2013
Messages
3,053
I see the pattern in the binary. ;)
 
Hint:

00 = 0 detections
01 = 1 detection
10 = 2 detections
11 = 3 detections
 
Joined
Apr 18, 2015
Messages
408
I see the pattern in the binary. ;)
Well I see patterns in all 3 of them but it's not consistent, for example the length of the binary string varies.

Yea I already reached the point where I realized 00 = none, 01 = 1, 10 = 2 and 11 = 3 detections :p The thing I can't solve is to find out which clan is busted and which one isn't, when given a binary string.
 
Joined
Mar 14, 2015
Messages
24
Just so you know, you can convert binary to int in java using

Integer.parseInt("<binary>",2);

eg.
Integer.parseInt("00", 2) = 0
Integer.parseInt("01", 2) = 1
Integer.parseInt("10", 2) = 2
Integer.parseInt("11", 2) = 3
 
Top