From fc30582979b5ba17aa7587590f7663bcea8b73d5 Mon Sep 17 00:00:00 2001 From: Erik Schierboom Date: Thu, 25 Apr 2024 15:48:20 +0200 Subject: [PATCH] pangram: add deep dive information (#2432) --- exercises/allergies/metadata.toml | 2 +- exercises/pangram/metadata.toml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/exercises/allergies/metadata.toml b/exercises/allergies/metadata.toml index 424232da48..0f6e6d7336 100644 --- a/exercises/allergies/metadata.toml +++ b/exercises/allergies/metadata.toml @@ -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." diff --git a/exercises/pangram/metadata.toml b/exercises/pangram/metadata.toml index f0b4f88546..50eb3a9a61 100644 --- a/exercises/pangram/metadata.toml +++ b/exercises/pangram/metadata.toml @@ -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!"