pub fn LZWDecompress(compressed: Vec<u16>) -> String
Expand description

Decompresses the compressed data using the LZW decompression algorithm.

§Arguments

  • compressed - A vector of integers representing the compressed data.

§Returns

A string representing the decompressed data.