Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 58 additions & 8 deletions 02_assignments/assignment.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
* Open a private window in your browser. Copy and paste the link to your pull request into the address bar. Make sure you can see your pull request properly. This helps the technical facilitator and learning support staff review your submission easily.

Checklist:
- [ ] Create a branch called `assignment`.
- [ ] Ensure that the repository is public.
- [ ] Review [the PR description guidelines](https://github.com/UofT-DSI/onboarding/blob/main/onboarding_documents/submissions.md#guidelines-for-pull-request-descriptions) and adhere to them.
- [ ] Verify that the link is accessible in a private browser window.
- [X] Create a branch called `assignment`.
- [X] Ensure that the repository is public.
- [X] Review [the PR description guidelines](https://github.com/UofT-DSI/onboarding/blob/main/onboarding_documents/submissions.md#guidelines-for-pull-request-descriptions) and adhere to them.
- [X] Verify that the link is accessible in a private browser window.

# Assignment: The Secret Password

Expand All @@ -34,10 +34,60 @@ You are stuck in a virtual room and can only leave if you figure out the passwor

**What is the secret password?**
```
Your answer here...



# Secret password is "Paper Rings 10 Meets and Lucky Stars" here is how I found it:
# 1
cd 02_assignments/clues/food/cake/
ls
cat chocolate_cake.txt
cat red_velvet_cake.txt
cat vanilla_cake.txt
# The odd ingredient is "Paper Rings"
cd ..
cd ..
# 2
cd shows/friends/
ls season_1
ls season_2
ls season_3
ls season_4
ls season_5
ls season_6
ls season_7
ls season_8
ls season_9
ls season_10
# The answer is "10"
cd ..
cd ..
# 3
cd shows/friends/season_6
cat ep_21.txt
# The answer is "Meets"
cd ..
cd ..
cd ..
# 4
cd movies/space_wars
cat fifth_movie.txt
# The answer is "and"
cd ..
cd ..
# 5
cd albums/red
ls
cat song_1.txt
cat song_2.txt
cat song_3.txt
cat song_4.txt
cat song_5.txt
# The answer is "Lucky"
cd ..
cd ..
# 6
cd movies/hanger_games
ls
cat movie_4.text
# The answer is "Stars"

```

Expand Down