You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement the functions which creates a genericCompression instance for Gzip compression and decompression.
It should return a 'writer function' to create a writer that compresses data, and
a 'reader function' to create a reader that decompresses data.
NOTE: The GZIP compression requires an integer input for the level of compression, so dont forget that!
HINT: You can use the standard go implementation of GZIP algorithm
The text was updated successfully, but these errors were encountered:
NOTE: Solve issue #28 first.
Implement the functions which creates a
genericCompression
instance for Gzip compression and decompression.It should return a 'writer function' to create a writer that compresses data, and
a 'reader function' to create a reader that decompresses data.
NOTE: The GZIP compression requires an integer input for the level of compression, so dont forget that!
HINT: You can use the standard go implementation of GZIP algorithm
The text was updated successfully, but these errors were encountered: