Collection of my notes for UIUC proficiency exams for the following classes:
- CS 124: Introduction to Computer Science I
- CS 128: Introduction to Computer Science II
- CS 173: Discrete Structures
- CS 225: Data Structures
- STAT 107: Data Science Discovery
- MATH 257: Linear Algebra with Computational Applications
My foundation before preparing for these exams was AP Computer Science A, AP Statistics, and some minor knowledge of data structures and C++. My notes build on this foundational level of understanding.
- The environment and the necessary dependencies used in the STAT107 class are all defined in the Conda configuration file environment.yaml located in the root of the STAT107 folder
- To create and activate a virtual environment for this project using conda, run:
conda env create -f environment.yml;
conda activate stat107;- Tip: for imports and type annotations to work in VSCode, open Code from the terminal running the activated virtual environment (will be indicated by
(stat107)) usingcode .