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

Fix invalid track names for 48in24 #6801

Merged
merged 2 commits into from
Feb 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,25 +29,25 @@ class User::Challenges::FeaturedExercisesProgress48In24
{ week: 22, slug: 'yacht', title: 'Yacht', featured_tracks: %w[common-lisp rust fsharp], learning_opportunity: "" },
{ week: 23, slug: 'matching-brackets', title: 'Matching Brackets', featured_tracks: %w[racket zig vbnet], learning_opportunity: "" },
{ week: 24, slug: 'rna-transcription', title: 'RNA Transcription', featured_tracks: %w[scheme elm abap], learning_opportunity: "" },
{ week: 25, slug: 'binary-search', title: 'Binary Search', featured_tracks: %w[todo: fortran ballerina ocaml], learning_opportunity: "" },
{ week: 26, slug: 'spiral-matrix', title: 'Spiral Matrix', featured_tracks: %w[vb purescript go], learning_opportunity: "" },
{ week: 25, slug: 'binary-search', title: 'Binary Search', featured_tracks: %w[fortran ballerina ocaml], learning_opportunity: "" },
{ week: 26, slug: 'spiral-matrix', title: 'Spiral Matrix', featured_tracks: %w[vbnet purescript go], learning_opportunity: "" },
{ week: 27, slug: 'secret-handshake', title: 'Secret Handshake', featured_tracks: %w[cpp raku haskell], learning_opportunity: "" },
{ week: 28, slug: 'anagram', title: 'Anagram', featured_tracks: %w[todo: cobol lfe reasonml], learning_opportunity: "" },
{ week: 29, slug: 'kindergarten-garden', title: 'Kindergarten Garden', featured_tracks: %w[todo: c awk perl], learning_opportunity: "" },
{ week: 28, slug: 'anagram', title: 'Anagram', featured_tracks: %w[cobol lfe reasonml], learning_opportunity: "" },
{ week: 29, slug: 'kindergarten-garden', title: 'Kindergarten Garden', featured_tracks: %w[c awk perl5], learning_opportunity: "" },
{ week: 30, slug: 'robot-simulator', title: 'Robot Simulator', featured_tracks: %w[typescript gleam python], learning_opportunity: "" },
{ week: 31, slug: 'knapsack', title: 'Knapsack', featured_tracks: %w[java jq prolog], learning_opportunity: "" },
{ week: 32, slug: 'meetup', title: 'Meetup', featured_tracks: %w[purescript erlang php], learning_opportunity: "" },
{ week: 33, slug: 'pascals-triangle', title: 'Pascals Triangle', featured_tracks: %w[dart coffeescript julia], learning_opportunity: "" },
{ week: 34, slug: 'hamming', title: 'Hamming', featured_tracks: %w[csharp 8th wren], learning_opportunity: "" },
{ week: 35, slug: 'rotational-cipher', title: 'Rotational Cipher', featured_tracks: %w[bash unison kotlin], learning_opportunity: "" },
{ week: 36, slug: 'phone-number', title: 'Phone Number', featured_tracks: %w[perl elixir swift], learning_opportunity: "" },
{ week: 36, slug: 'phone-number', title: 'Phone Number', featured_tracks: %w[perl5 elixir swift], learning_opportunity: "" },
{ week: 37, slug: 'isogram', title: 'Isogram', featured_tracks: %w[awk rust prolog], learning_opportunity: "" },
{ week: 38, slug: 'bob', title: 'Bob', featured_tracks: %w[ruby fsharp d], learning_opportunity: "" },
{ week: 39, slug: 'two-bucket', title: 'Two Bucket', featured_tracks: %w[crystal v elm], learning_opportunity: "" },
{ week: 39, slug: 'two-bucket', title: 'Two Bucket', featured_tracks: %w[crystal vlang elm], learning_opportunity: "" },
{ week: 40, slug: 'grade-school', title: 'Grade School', featured_tracks: %w[powershell gleam lua], learning_opportunity: "" },
{ week: 41, slug: 'bank-account', title: 'Bank Account', featured_tracks: %w[java erlang clojure], learning_opportunity: "" },
{ week: 42, slug: 'food-chain', title: 'Food Chain', featured_tracks: %w[ruby go haskell], learning_opportunity: "" },
{ week: 43, slug: 'eliuds-eggs', title: 'Eliud\'s Eggs', featured_tracks: %w[x86-64 racket 8th], learning_opportunity: "" },
{ week: 43, slug: 'eliuds-eggs', title: 'Eliud\'s Eggs', featured_tracks: %w[x86-64-assembly racket 8th], learning_opportunity: "" },
{ week: 44, slug: 'collatz-conjecture', title: 'Collatz Conjecture', featured_tracks: %w[rust csharp jq], learning_opportunity: "" },
{ week: 45, slug: 'run-length-encoding', title: 'Run-Length Encoding', featured_tracks: %w[wasm elm kotlin], learning_opportunity: "" },
{ week: 46, slug: 'armstrong-numbers', title: 'Armstrong Numbers', featured_tracks: %w[mips d javascript], learning_opportunity: "" },
Expand Down