This is a set of 2D-array teaching tools. It is designed to be done as a solo project, to teach yourself 2D arrays.
There are a total of 4 sets of exercises, intended to be completed in order, which will challenge you to access/mutate 2D Lists in a variety of situations, in Python.
Note: This project assumes that you already have a basic understanding of how functions work!
You will be required to write your code inside of empty functions.
After installing Python 3.6+, run setup.bat
in the repository folder to generate the venv with all dependencies.
You may use any IDE you like for this project (we use PyCharm), but the automated checking scripts should be run from command line.
We highly recommend Windows Terminal with PowerShell Core!
- Clone the repository.
1.1 You can see here for an example.
1.2 Use either of the following to clone if you're using the above guide, since said guide is from a different project:- HTTPS:
https://github.com/TEAM-SPIRIT-Productions/2D-Array-Exercises.git
- SSH:
[email protected]:TEAM-SPIRIT-Productions/2D-Array-Exercises.git
- HTTPS:
- Make sure Python is installed
- If you have Chocolatey, you can just do
choco install python
to install Python
- If you have Chocolatey, you can just do
- Run
setup.bat
- Work on the files in the subfolders (e.g.
prob1/exercise.py
is exercise 1) - Run the batch file
check_solutions.bat
to check if your answer is correct
These are optional software tools that we, ourselves, use.
We recommend using Chocolatey for installing software on Windows.
For latest information, see the official guide.
This installation guide assumes you're using Windows 10
- Start and administrative shell
Ctrl + X
, release, then hitA
- Run the following command (copy and paste):
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
- If there are no error, Chocolatey is now installed!
- You may use
choco -?
to check if it's working
- You may use
This is our preferred shell!
- Start and administrative shell
Ctrl + X
, release, then hitA
- Run the following command:
choco install powershell-core
- Enter either
y
ora
when prompted, to allow Chocolatey to install
This is our preferred terminal! It's highly customisable! (see below)
- Start and administrative shell
Ctrl + X
, release, then hitA
- Run the following command:
choco install microsoft-windows-terminal
- Enter either
y
ora
when prompted, to allow Chocolatey to install
Fig. 1: Sample for Windows Terminal + PowerShell Core (KOOKIIE)
Fig. 2: Sample for Windows Terminal + PowerShell Core (Brandon)
Fig. 3: Sample for Windows Terminal + PowerShell Core (Brandon)
For any enquiries/bug reports/suggestions, feel free to file them at the issues page (preferred).
You may alternatively contact the author at KOOKIIE#9770
on Discord.
2D-Array-Exercises is an open-source set of Koans intended to be used as an educational tool. 2D-Array-Exercises is non-monetised, and provided as is. Every effort has been taken to ensure correctness and reliability at the time of release. We will not be liable for any special, direct, indirect, or consequential damages or any damages whatsoever resulting from loss of use, data or profits, whether in an action if contract, negligence or other tortious action, arising out of or in connection with the use of 2D-Array-Exercises (in part or in whole).