Problem I wrote something to “compress” svg files. The svg files I am using often have comments and empty <g> […]

Problem I’m learning Swift and decided the Huffman Coding algorithm would be a good exercise while learning this new language. […]

Problem This replaces numbers with the character that appears next to them (‘number’ times). Is there a a more elegant […]

Problem This is problem 50 in https://wiki.haskell.org/99_questions/46_to_50. The website has more elegant Haskell solutions, but I wanted to get feedback […]

Problem I wrote a method that reduces a string like aabcccccaaa to a2b1c5a3 My implementation: string Compress(string str) { StringBuilder […]

Problem I wrote a short Haskell script to compress and decompress via the use of run length encoding. The concept […]

Problem Given an ASCII string create a ‘compressed’ version of it. For example, aabccccddddddde would output a2bc4d7e whereas abc would […]

Problem Write a program that takes any input text and produces both a frequency table and the corresponding Huffman code. Take […]

Problem I watched a presentation by Dave Thomas on Elixir where he gave an example problem that he solved using […]