CS 120 (Spring 21): Introduction to Computer Programming II
1 Overview In this project, you will be writing a single function; this function will (very approximately) recreate the DEFLATE algorithm – which will show you how a .zip file stores compressed data. You will be passed an array of tokens, which represent the data in the compressed file; you will return a string, which is the uncompressed data. 2 Python Hints: type() Python has […]