Skip to content

Commit

Permalink
Rename 'bracket-push' to 'matching-brackets' (fixes exercism#303)
Browse files Browse the repository at this point in the history
This rename was proposed in: exercism/problem-spåecifications#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 authored and marionebl committed Jun 24, 2019
1 parent 8a1f254 commit f1e8f94
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
]
},
{
"slug": "bracket-push",
"slug": "matching-brackets",
"uuid": "9f7b9da6-afff-4d2b-862e-df1b3a0a7cef",
"core": false,
"unlocked_by": null,
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Bracket Push
# Matching Brackets

Given a string containing brackets `[]`, braces `{}` and parentheses `()`,
verify that all the pairs are matched and nested correctly.
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
open Base
open OUnit2
open Bracket_push
open Matching_brackets

let ae exp got _test_ctxt =
assert_equal exp got ~printer:Bool.to_string
Expand Down Expand Up @@ -39,4 +39,4 @@ let tests = [
]

let () =
run_test_tt_main ("bracket-push tests" >::: tests)
run_test_tt_main ("matching-brackets tests" >::: tests)

0 comments on commit f1e8f94

Please sign in to comment.