This repository has been combined with Keng Hwee's practice repository at this repository. You can take a look there!
Post-tutorial extra practice questions. Meant for educational purposes on TA-ing CS1010S: Programming Methodology.
- Clone this repository and make sure you have a local LaTeX compiler. You can get one by running the following on your command line (assuming Ubuntu 20.04.2 and TeXLive 2019)
sudo apt -y install inkscape && export _INKSCAPE_GC=disable sudo apt -y install texlive-latex-base sudo apt -y install texlive-latex-recommended sudo apt -y install texlive-pictures sudo apt -y install texlive-latex-extra sudo apt -y install texlive-fonts-extra
- We will be using Makefile to render the TeX files into PDF files. For example, to render the question and solutions to Extra Practice 1 do the following.
cd ~/practice-makes-perfect/01 make # Generates question make s # Generates solutions
- For simplicity, you can just render everything by running
automate.sh
.cd ~/practice-makes-perfect ./automate.sh