Skip to content

Instantly share code, notes, and snippets.

View joehoper's full-sized avatar

Joe Hoper joehoper

View GitHub Profile
@mjs3339
mjs3339 / lzw.cs
Last active April 13, 2023 19:40
C# Implementation of LZW Compression/Decompression Algorithm
using System;
using System.Collections.Generic;
using System.Security;
public static class lzw
{
public static int CompressedSize
{
get;
set;
}