By typing `git remote -v`, you can verify that there are 2 remote urls added to your fork now: The url for "origin" contains the branches of your fork, "upstream" contains the branches of this repo.
Every time you want to merge your repo with new updates on the upstream, run
```
git fetch upstream
git merge upstream/main origin/main
```
`fetch` checks for new commits found at the upstream url, and `merge` merges the upstream branch (called `upstream/main`) with your branch (called `origin/main`).
If you only committed changes in `solution_00.py`, you will be able to merge without conflicts.
If you only committed changes in `solution_00.py`, you will be able to merge without conflicts (fast-forward).