AGGTAB
AGGTAB is a six-character string used in computer science as a standard example input for the Longest Common Subsequence (LCS) problem. The characters are A, G, G, T, A, B. It is commonly paired with the second string GXTXAYB in teaching materials to illustrate dynamic programming solutions for LCS. In this widely cited example, the LCS of AGGTAB and GXTXAYB has length 4, with one possible longest subsequence being GTAB.
The example serves to demonstrate how to construct and fill a two-dimensional dynamic programming table and
AGGTAB is referenced in textbooks and online resources as a concise, concrete illustration of LCS computation,