45 lines
978 B
TeX
45 lines
978 B
TeX
\documentclass[fontsize=11pt]{article}
|
|
\usepackage{amsmath}
|
|
\usepackage[utf8]{inputenc}
|
|
\usepackage[margin=0.75in]{geometry}
|
|
|
|
\title{CSC111 Assignment 1: Linked Lists}
|
|
\author{Azalea Gui \& Peter Lin}
|
|
\date{\today}
|
|
|
|
\begin{document}
|
|
\maketitle
|
|
|
|
\section*{Part 1: Faster Searching in Linked Lists}
|
|
|
|
\begin{enumerate}
|
|
|
|
\item[1.]
|
|
Complete this part in the provided \texttt{a1\_part1.py} starter file.
|
|
Do \textbf{not} include your solution in this file.
|
|
|
|
\item[2.]
|
|
Complete this part in the provided \texttt{a1\_part1\_test.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.
|
|
\end{enumerate}
|
|
|
|
\item[4.]
|
|
TODO: Write your answer here.
|
|
|
|
\end{enumerate}
|
|
|
|
\section*{Part 2: Linked List Visualization}
|
|
Complete this part in the provided \texttt{a1\_part2.py} starter file.
|
|
Do \textbf{not} include your solution in this file.
|
|
|
|
\end{document}
|