Name: Anonymous 2018-10-29 20:43
Create an algorithm that will infinitely compress any data.
public File compressorFunction (File fileToCompress) {
//does nothing with the argument because who cares
File compressedFile = null;
return compressedFile;
}