Finish part1 1a loop accumulator table

This commit is contained in:
MstrPikachu
2021-10-24 18:13:58 -04:00
parent 9f7c0d102b
commit 0955a167cf
+4 -1
View File
@@ -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}