Set up Github

GitHub is a web-based platform used for version control and collaborative software development, allowing multiple people to work on projects simultaneously. It provides a repository hosting service that includes features like bug tracking, task management, and continuous integration.
On your personal machine, you must have Git installed
Create a GitHub Account

It is highly recommended to use your personal email account for GitHub
Setting Git with your Github Account
Open Terminal on VS Code
Enter the following code
Fork the Exercises Repository
While logged into your GitHub account, on the same browser: Go to the following repository (LINK)

Fork the Repository to your account
Navigate to your forked repository that now exists in your account
Click the Code button. Copy the URL for the repository.
On your visual studio code's terminal, go to your home directory
Clone the repository to your own machine
Make sure to replace YOUR-USERNAME/YOUR-FORKED-REPO
with your repository's information
How to use this repository
This repository currently contains the following:
A directory per exercise problems with solutions on YouTube
An empty Python file that a potential programmer can code on.
It is expected that the user understands/knows how to navigate to different directories and execute a Python file from the terminal.
You should be coding the exercises within these directories then pushing your changes to GitHub.
After any meaningful changes, on your terminal:
Last updated