feat: updated LCS problem

This commit is contained in:
2025-12-09 21:26:27 -03:00
parent e75daedef5
commit 0951a11635
110 changed files with 201 additions and 30 deletions

View File

@@ -19,11 +19,11 @@ Imprima um único inteiro representando o comprimento da maior subsequência com
\ExemploEntrada
\begin{Exemplo}
\texttt{5~3} & \texttt{3}\\
\texttt{abcde~ace} & \\
\texttt{abcde~ace} & \texttt{ace}\\
\rowcolor{gray!20}\texttt{3~3} & \texttt{3}\\
\rowcolor{gray!20}\texttt{abc~abc} & \\
\rowcolor{gray!20}\texttt{abc~abc} & \texttt{abc}\\
\texttt{3~3} & \texttt{0}\\
\texttt{abc~hhh} & \\
\texttt{abc~hhh} & \texttt{}\\
\end{Exemplo}