Skip to content

Commit

Permalink
Updated meetup instructions (#1212)
Browse files Browse the repository at this point in the history
* Updated meetup instructions

* Added missing test for matching-brackets
  • Loading branch information
tradfursten authored Oct 6, 2022
1 parent 6c29e93 commit dbb9f91
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
3 changes: 3 additions & 0 deletions exercises/practice/matching-brackets/.meta/tests.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ description = "unpaired and nested brackets"
[a0205e34-c2ac-49e6-a88a-899508d7d68e]
description = "paired and wrong nested brackets"

[1d5c093f-fc84-41fb-8c2a-e052f9581602]
description = "paired and wrong nested brackets but innermost are correct"

[ef47c21b-bcfd-4998-844c-7ad5daad90a8]
description = "paired and incomplete brackets"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,11 @@ defmodule MatchingBracketsTest do
refute MatchingBrackets.check_brackets("[({]})")
end

@tag :pending
test "paired and wrong nested brackets but innermost are correct" do
refute MatchingBrackets.check_brackets("[({}])")
end

@tag :pending
test "paired and incomplete brackets" do
refute MatchingBrackets.check_brackets("{}[")
Expand Down
2 changes: 1 addition & 1 deletion exercises/practice/meetup/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Examples of general descriptions are:
- Teenth Sunday of July 2021
- Last Thursday of November 2021

The descriptors you are expected to process are: `first`, `second`, `third`, `fourth`, `fifth`, `last`, `teenth`.
The descriptors you are expected to process are: `first`, `second`, `third`, `fourth`, `last`, `teenth`.

Note that descriptor `teenth` is a made-up word.
There are exactly seven numbered days in a month that end with "teenth" ("thirteenth" to "nineteenth").
Expand Down

0 comments on commit dbb9f91

Please sign in to comment.