Skip to content

Commit

Permalink
Merge pull request #70 from codecrafters-io/update-slugs-with-new-names
Browse files Browse the repository at this point in the history
CC-1227 Update slugs to use new format
  • Loading branch information
libmartinito authored May 17, 2024
2 parents 436ac78 + d64141a commit 602ec95
Show file tree
Hide file tree
Showing 89 changed files with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions course-definition.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ extensions:
stages:
- legacy_slug: "init"
slug: "init"
slug: "cq2"
name: "Match a literal character"
difficulty: very_easy
description_md: |-
Expand Down Expand Up @@ -91,7 +91,7 @@ stages:
`a` should match "apple", but not "dog".
- legacy_slug: "match_digit"
slug: "match_digit"
slug: "oq2"
name: "Match digits"
difficulty: very_easy
description_md: |-
Expand Down Expand Up @@ -124,7 +124,7 @@ stages:
`\d` should match "1", but not "a".
- legacy_slug: "match_alphanumeric"
slug: "match_alphanumeric"
slug: "mr9"
name: "Match alphanumeric characters"
difficulty: very_easy
description_md: |-
Expand Down Expand Up @@ -157,7 +157,7 @@ stages:
`\w` should match "foo101", but not "$!?".
- legacy_slug: "positive_character_groups"
slug: "positive_character_groups"
slug: "tl6"
name: "Positive Character Groups"
difficulty: medium
description_md: |-
Expand Down Expand Up @@ -188,7 +188,7 @@ stages:
`[abc]` should match "apple", but not "dog".
- legacy_slug: "negative_character_groups"
slug: "negative_character_groups"
slug: "rk3"
name: "Negative Character Groups"
difficulty: medium
description_md: |-
Expand Down Expand Up @@ -219,7 +219,7 @@ stages:
`[^abc]` should match "dog", but not "cab" (since all characters are either "a", "b" or "c").
- legacy_slug: "combining_character_classes"
slug: "combining_character_classes"
slug: "sh9"
name: "Combining Character Classes"
difficulty: medium
description_md: |-
Expand Down Expand Up @@ -263,7 +263,7 @@ stages:
implementation to process user input character-by-character instead of the whole line at once.
- legacy_slug: "start_of_string_anchor"
slug: "start_of_string_anchor"
slug: "rr8"
name: "Start of string anchor"
difficulty: medium
description_md: |-
Expand Down Expand Up @@ -294,7 +294,7 @@ stages:
`^log` should match "log", but not "slog".
- legacy_slug: "end_of_string_anchor"
slug: "end_of_string_anchor"
slug: "ao7"
name: "End of string anchor"
difficulty: medium
description_md: |-
Expand Down Expand Up @@ -325,7 +325,7 @@ stages:
`dog$` should match "dog", but not "dogs".
- legacy_slug: "one_or_more_quantifier"
slug: "one_or_more_quantifier"
slug: "fz7"
name: "Match one or more times"
difficulty: hard
description_md: |-
Expand All @@ -352,7 +352,7 @@ stages:
- `a+` should match "apple" and "SaaS", but not "dog".
- legacy_slug: "zero_or_one_quantifier"
slug: "zero_or_one_quantifier"
slug: "ny8"
name: "Match zero or one times"
difficulty: hard
description_md: |-
Expand All @@ -379,7 +379,7 @@ stages:
- `dogs?` should match "dogs" and "dog", but not "cat".
- legacy_slug: "wildcard"
slug: "wildcard"
slug: "zb3"
name: "Wildcard"
difficulty: medium
description_md: |-
Expand All @@ -406,7 +406,7 @@ stages:
- `d.g` should match "dog", but not "cog".
- legacy_slug: "alternation"
slug: "alternation"
slug: "zm7"
name: "Alternation"
difficulty: hard
description_md: |-
Expand Down Expand Up @@ -435,7 +435,7 @@ stages:
# Backreferences

- legacy_slug: "backreferences-single"
slug: "backreferences-single"
slug: "sb5"
primary_extension_slug: "backreferences"
name: "Single Backreference"
difficulty: hard
Expand Down Expand Up @@ -465,7 +465,7 @@ stages:
**Example:**
- `(cat) and \1` should match "cat and cat", but not "cat and dog".
- legacy_slug: "backreferences-multiple"
slug: "backreferences-multiple"
slug: "tg1"
primary_extension_slug: "backreferences"
name: "Multiple Backreferences"
difficulty: medium
Expand All @@ -489,7 +489,7 @@ stages:
**Example:**
- `(\d+) (\w+) squares and \1 \2 circles` should match "3 red squares and 3 red circles" but should not match "3 red squares and 4 red circles".
- legacy_slug: "backreferences-nested"
slug: "backreferences-nested"
slug: "xe5"
primary_extension_slug: "backreferences"
name: "Nested Backreferences"
difficulty: hard
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 602ec95

Please sign in to comment.