Tagged Questions
3
votes
1answer
235 views
Finding two consecutive 1's in a bitstring in less then n time?
I am trying to figure out a way to see if a bitstring has 2 consecutive ones in the bitstring size n in less then n time.
For example, lets say we had a bitstring size 5 (index 0-4). If index 1 and ...
3
votes
6answers
1k views
Project Euler #219
I'm trying to do project Euler number 219 but am failing to get a grasp of it. I'm trying to use Python which according to project Euler should be able to do it within a minute! This leads me to think ...
1
vote
2answers
226 views
Huffman “terminator” bitstring
Motivation
Imagine a huffman compressed file that gets downloaded partially, like in P2P software, so we allocate disk space for the whole file first and then start downloading random file chunks. ...