From 0955a167cfc0e4d0c4aab99739e6ebfc194ca3ba Mon Sep 17 00:00:00 2001 From: MstrPikachu <31784486+MstrPikachu@users.noreply.github.com> Date: Sun, 24 Oct 2021 18:13:58 -0400 Subject: [PATCH] Finish part1 1a loop accumulator table --- assignments/a3/a3.tex | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/assignments/a3/a3.tex b/assignments/a3/a3.tex index 6bdc202..e7ae115 100644 --- a/assignments/a3/a3.tex +++ b/assignments/a3/a3.tex @@ -26,7 +26,10 @@ Iteration & \verb|word| & \verb|words| & \verb|word_frequencies|\\ \hline 0 & N/A & \texttt{[]} & \texttt{[]} \\ - 1 & & & \\ + 1 & \texttt{'Hello'} & \texttt{['Hello']} & \texttt{[2]} \\ + 2 & \texttt{'Amy'} & \texttt{['Hello', 'Amy']} & \texttt{[2, 1]} \\ + 3 & \texttt{'was'} & \texttt{['Hello', 'Amy', 'was']} & \texttt{[2, 1, 1]} \\ + 4 & \texttt{'here'} & \texttt{['Hello', 'Amy', 'was', 'here']} & \texttt{[2, 1, 1, 1]} \\ \hline \end{tabular}