Skip to content

Commit

Permalink
Rename 'bracket-push' to 'matching-brackets'
Browse files Browse the repository at this point in the history
This rename was proposed in exercism/problem-specifications#1501

The rationale for the name is:

* to name the exercise by its story, not by what it potentially teaches
* to avoid unnecessarily biasing the solution space
  • Loading branch information
sshine committed Sep 3, 2019
1 parent 4ce446e commit d4fc3f6
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
]
},
{
"slug": "bracket-push",
"slug": "matching-brackets",
"uuid": "67108540-cdc3-46df-81f9-6bd8d3580575",
"core": false,
"unlocked_by": null,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# Bracket Push
# Matching Brackets

Given a string containing brackets `[]`, braces `{}` and parentheses `()`,
verify that all the pairs are matched and nested correctly.

## Loading your exercise implementation in PolyML

```
$ poly --use bracket-push.sml
$ poly --use matching-brackets.sml
```

Or:

```
$ poly
> use "bracket-push.sml";
> use "matching-brackets.sml";
```

## Running the tests
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(* version 1.4.0 *)

use "testlib.sml";
use "bracket-push.sml";
use "matching-brackets.sml";

infixr |>
fun x |> f = f x
Expand Down
File renamed without changes.

0 comments on commit d4fc3f6

Please sign in to comment.