Skip to content

Instantly share code, notes, and snippets.

@branchus
Created April 12, 2021 11:43
Show Gist options
  • Select an option

  • Save branchus/96f4db030f5bd0d79f773e338cf1848f to your computer and use it in GitHub Desktop.

Select an option

Save branchus/96f4db030f5bd0d79f773e338cf1848f to your computer and use it in GitHub Desktop.
Latex template
\documentclass[12pt, a4paper]{article}
\usepackage[utf8]{inputenc} % enable utf8 support
\usepackage{graphicx} % Enable graphic support
\graphicspath{ {images/} } % graphic path
\usepackage[margin=15mm]{geometry}
\usepackage{mathtools}
\setlength\parindent{0pt}
%opening
\title{COMP3927 Assignment 2}
\author{xxxxxxxx - SID: 4703600xx}
\date{\vspace{-4ex}}
\begin{document}
\maketitle
\section*{Task 1: Social Distancing}
\textbf{\textit{Question a - define the subproblems}} \\
\textbf{\textit{Question b - define the recurrence}} \\
\textbf{\textit{Question c - define the base cases}} \\
\textbf{\textit{Question d - describe how the maximum revenue is obtained from OPT(...)}} \\
\textbf{\textit{Question e - Prove the correctness of recurrence and base cases}} \\
\textbf{\textit{Question f - prove the time and space complexity}} \\
\textbf{Space complexity: } \\
\textbf{Time complexity: }
\section*{Task 2: Grid Climbing}
\textbf{\textit{Question a - define the subproblems}} \\
\textbf{\textit{Question b - define the recurrence}} \\
\textbf{\textit{Question c - define the base cases}} \\
\textbf{\textit{Question d - describe how the maximum revenue is obtained from OPT(...)}} \\
\textbf{\textit{Question e - Prove the correctness of recurrence and base cases}} \\
\textbf{\textit{Question f - prove the time and space complexity}} \\
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment