Hi all,
I made a data compression algorithm that works as follows:
Replace common bigrams with a fixed value:
"of the" => "of e"
"and she" => "and e"
"when there" => "when e"<p>To decompress, look up the bigram dictionary for the right value of e.<p>I've had some weird bugs in the decompression process, so I'm looking forward to others looking at this.