'''Parallelizing
From one of the suggested improvements in the algorithm post link. A potential improvement is changing from char& c to a const char in the for loop <syntaxhighlight lang="cpp"> for (char& c : input) { </syntaxhighlight > since char& c is not being modified. Otherwise we We did not see any other way to parallelize compressionthe algorithm.
=== Assignment 2 ===