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}