Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pangram: add deep dive information #2432

Merged
merged 1 commit into from
Apr 25, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion exercises/allergies/metadata.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ blurb = "Given a person's allergy score, determine whether or not they're allerg
source = "Exercise by the JumpstartLab team for students at The Turing School of Software and Design."
source_url = "https://turing.edu"
deep_dive_youtube_id = "OFS9sknfpkc"
deep_dive_blurb = "We explore bit shifting, bitwise comparsion and other binary number concepts! We also take a look at a solution using pattern matching and an interesting approach in Erlang using recursion."
deep_dive_blurb = "We explore bit shifting, bitwise comparison and other binary number concepts! We also take a look at a solution using pattern matching and an interesting approach in Erlang using recursion."
2 changes: 2 additions & 0 deletions exercises/pangram/metadata.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ title = "Pangram"
blurb = "Determine if a sentence is a pangram."
source = "Wikipedia"
source_url = "https://en.wikipedia.org/wiki/Pangram"
deep_dive_youtube_id = "lFX12nbBrMU"
deep_dive_blurb = "We explore higher-order functions, set operations, using bitwise operations and more, looking at languages including Rust, Pharo, jq and Kotlin!"