Skip to content

Commit dbb9f91

Browse files
authored
Updated meetup instructions (#1212)
* Updated meetup instructions * Added missing test for matching-brackets
1 parent 6c29e93 commit dbb9f91

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

exercises/practice/matching-brackets/.meta/tests.toml

+3
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ description = "unpaired and nested brackets"
4848
[a0205e34-c2ac-49e6-a88a-899508d7d68e]
4949
description = "paired and wrong nested brackets"
5050

51+
[1d5c093f-fc84-41fb-8c2a-e052f9581602]
52+
description = "paired and wrong nested brackets but innermost are correct"
53+
5154
[ef47c21b-bcfd-4998-844c-7ad5daad90a8]
5255
description = "paired and incomplete brackets"
5356

exercises/practice/matching-brackets/test/matching_brackets_test.exs

+5
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@ defmodule MatchingBracketsTest do
6666
refute MatchingBrackets.check_brackets("[({]})")
6767
end
6868

69+
@tag :pending
70+
test "paired and wrong nested brackets but innermost are correct" do
71+
refute MatchingBrackets.check_brackets("[({}])")
72+
end
73+
6974
@tag :pending
7075
test "paired and incomplete brackets" do
7176
refute MatchingBrackets.check_brackets("{}[")

exercises/practice/meetup/.docs/instructions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Examples of general descriptions are:
1010
- Teenth Sunday of July 2021
1111
- Last Thursday of November 2021
1212

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

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

0 commit comments

Comments
 (0)