Skip to content

Commit

Permalink
Renamed bracket-push to matching-brackets
Browse files Browse the repository at this point in the history
As requested in exercism/problem-specifications#1501
and detailed in exercism#253
  • Loading branch information
edgerunner committed Aug 27, 2019
1 parent 6b02dbe commit 1c70f04
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@
]
},
{
"slug": "bracket-push",
"slug": "matching-brackets",
"uuid": "5b2f0983-6feb-4329-aff2-d822274a9882",
"core": false,
"unlocked_by": null,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module BracketPush exposing (isPaired)
module MatchingBrackets exposing (isPaired)


isPaired : String -> Bool
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module BracketPush exposing (isPaired)
module MatchingBrackets exposing (isPaired)

import Dict exposing (Dict)
import List
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Bracket Push
# Matching Brackets

Given a string containing brackets `[]`, braces `{}`, parentheses `()`,
or any combination thereof, verify that any and all pairs are matched
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
module Tests exposing (tests)

import BracketPush exposing (isPaired)
import MatchingBrackets exposing (isPaired)
import Expect
import String
import Test exposing (..)


tests : Test
tests =
describe "BracketPush"
describe "MatchingBrackets"
[ test "paired square brackets" <|
\_ ->
Expect.equal True (isPaired "[]")
Expand Down

0 comments on commit 1c70f04

Please sign in to comment.