This document summarizes Huffman code decoding. It takes a sequence to be decoded and a character probability table as input. A binary tree is built from the probabilities, with left branches representing 1 and right 0. The time complexity is O(n^2) where n is the sequence length, as building the tree can resemble an unbalanced tree. Sample run times are provided for sequences of different lengths on 10 possible characters. Pseudocode provides an algorithm to traverse the tree and decode the sequence.