[+] Add starter files

This commit is contained in:
Hykilpikonna
2021-10-22 20:36:12 -04:00
parent e128848a4e
commit 9ac593288d
25 changed files with 9051 additions and 0 deletions
+118
View File
@@ -0,0 +1,118 @@
\documentclass[fontsize=11pt]{article}
\usepackage{amsmath}
\usepackage[utf8]{inputenc}
\usepackage[margin=0.75in]{geometry}
\title{CSC110 Assignment 3: Loops, Mutation, and Applications}
\author{TODO: FILL IN YOUR NAME HERE}
\date{\today}
\begin{document}
\maketitle
\section*{Part 1: Text generation, uniformly random model}
\begin{enumerate}
\item[1.]
\begin{enumerate}
\item[(a)]
TODO: Complete the table below (you will need to add more rows).
You may find this tutorial useful: https://www.overleaf.com/learn/latex/Tables.
\begin{tabular}{|l|l|l|l|}
\hline
Iteration & \verb|word| & \verb|words| & \verb|word_frequencies|\\
\hline
0 & N/A & \texttt{[]} & \texttt{[]} \\
1 & & & \\
\hline
\end{tabular}
\item[(b)]
TODO: Write your answer here.
\item[(c)]
TODO: Write your answer here.
\end{enumerate}
\item[2.]
Complete this part in the provided \texttt{a3\_part1.py} starter file.
Do \textbf{not} include your solution in this file.
\end{enumerate}
\newpage
\section*{Part 2: Text generation, One-Word Context Model}
\begin{enumerate}
\item[0.]
This question is not to be handed in.
\item[1.]
One-word context model:
\begin{verbatim}
# TODO: Write your one-word context model here as a Python value.
# Write each key-value pair on a separate line, like on the assignment handout.
{
}
\end{verbatim}
\item[2.]
Complete this part in the provided \texttt{a3\_part2.py} starter file.
Do \textbf{not} include your solution in this file.
\end{enumerate}
\newpage
\section*{Part 3: Loops and Mutation Debugging Exercise}
\begin{enumerate}
\item[1.]
TODO: Write your answer here.
\item[2.]
TODO: Write your answer here (and remember to edit a3\_part3.py as well).
\item[3.]
TODO: Write your answer here.
\end{enumerate}
\section*{Part 4: Forest Fires}
\begin{enumerate}
\item[1.]
Complete this part in the provided \texttt{a3\_part4.py} starter file.
Do \textbf{not} include your solution in this file.
\item[2.]
Complete this part in the provided \texttt{a3\_part4\_tests.py} starter file.
Do \textbf{not} include your solution in this file.
\item[3.]
\begin{enumerate}
\item[a.]
TODO: Write your answer here.
\item [b.]
TODO: Write your answer here.
\item[c.]
TODO: Write your answer here.
\end{enumerate}
\end{enumerate}
\end{document}