[EN] Implementation of the LZ77 compression algorithm
[FR] Implémentation de l'algorithme de compression LZ77
- go v1.14
CLI:
go test -v ./test
CODE:
import "github.com/fbonhomm/LZ77/source"
var lz77 = LZ77.init()
dataCompress := lz77.Compression([]byte("..."))
rawData := lz77.Decompression(dataCompress)