Hope everyone had a great weekend. Let's get this show on the road!
1010011010010000100010101101111110001100100100001001001110001001100110101001101111011111100101101000101111011110
Hope everyone had a great weekend. Let's get this show on the road!
1010011010010000100010101101111110001100100100001001001110001001100110101001101111011111100101101000101111011110
Permalink: http://problemotd.com/problem/beep-boop/
Content curated by @MaxBurstein
Comments:
Sejsel - 10 years, 9 months ago
It is a simple Binary to ASCII conversion. You have to change ones to zeroes and vice versa.
I will not spoil what it says, though :)
reply permalink
Max Burstein - 10 years, 9 months ago
It is not that simple :)
reply permalink
Mre - 10 years, 9 months ago
/* Mre64 7/7/14
*/
import java.util.ArrayList;
public class BTADecrypt { private static ArrayList<String> al = new ArrayList<String>(); private static String key = "0101100101101111011101010010000001110011011011110110110001110110011001010110010000100000011010010111010000100001"; private static String newMessage = "";
}
reply permalink
Anonymous - 10 years, 9 months ago
"1010011010010000100010101101111110001100100100001001001110001001100110101001101111011111100101101000101111011110".scan(/.{8}/).collect{|s| (256 + ~s.to_i(2)).chr}.join
reply permalink