-
Notifications
You must be signed in to change notification settings - Fork 519
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
brackets: simplify required interface #620
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,3 @@ | ||
pub struct Brackets; | ||
|
||
impl<'a> From<&'a str> for Brackets { | ||
fn from(input: &str) -> Self { | ||
unimplemented!("From the '{}' input construct a new Brackets struct", input); | ||
} | ||
} | ||
|
||
impl Brackets { | ||
pub fn are_balanced(&self) -> bool { | ||
unimplemented!("Check if your Brackets struct contains balanced brackets"); | ||
} | ||
pub fn brackets_are_balanced(string: &str) -> bool { | ||
unimplemented!("Check if the string \"{}\" contains balanced brackets", string); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,88 +1,88 @@ | ||
extern crate bracket_push; | ||
|
||
use bracket_push::*; | ||
use bracket_push::brackets_are_balanced; | ||
|
||
#[test] | ||
fn paired_square_brackets() { | ||
assert!(Brackets::from("[]").are_balanced()); | ||
assert!(brackets_are_balanced("[]")); | ||
} | ||
|
||
#[test] | ||
#[ignore] | ||
fn empty_string() { | ||
assert!(Brackets::from("").are_balanced()); | ||
assert!(brackets_are_balanced("")); | ||
} | ||
|
||
#[test] | ||
#[ignore] | ||
fn unpaired_brackets() { | ||
assert!(!Brackets::from("[[").are_balanced()); | ||
assert!(!brackets_are_balanced("[[")); | ||
} | ||
|
||
#[test] | ||
#[ignore] | ||
fn wrong_ordered_brackets() { | ||
assert!(!Brackets::from("}{").are_balanced()); | ||
assert!(!brackets_are_balanced("}{")); | ||
} | ||
|
||
#[test] | ||
#[ignore] | ||
fn wrong_closing_bracket() { | ||
assert!(!Brackets::from("{]").are_balanced()); | ||
assert!(!brackets_are_balanced("{]")); | ||
} | ||
|
||
#[test] | ||
#[ignore] | ||
fn paired_with_whitespace() { | ||
assert!(Brackets::from("{ }").are_balanced()); | ||
assert!(brackets_are_balanced("{ }")); | ||
} | ||
|
||
#[test] | ||
#[ignore] | ||
fn simple_nested_brackets() { | ||
assert!(Brackets::from("{[]}").are_balanced()); | ||
assert!(brackets_are_balanced("{[]}")); | ||
} | ||
|
||
#[test] | ||
#[ignore] | ||
fn several_paired_brackets() { | ||
assert!(Brackets::from("{}[]").are_balanced()); | ||
assert!(brackets_are_balanced("{}[]")); | ||
} | ||
|
||
#[test] | ||
#[ignore] | ||
fn paired_and_nested_brackets() { | ||
assert!(Brackets::from("([{}({}[])])").are_balanced()); | ||
assert!(brackets_are_balanced("([{}({}[])])")); | ||
} | ||
|
||
#[test] | ||
#[ignore] | ||
fn unopened_closing_brackets() { | ||
assert!(!Brackets::from("{[)][]}").are_balanced()); | ||
assert!(!brackets_are_balanced("{[)][]}")); | ||
} | ||
|
||
#[test] | ||
#[ignore] | ||
fn unpaired_and_nested_brackets() { | ||
assert!(!Brackets::from("([{])").are_balanced()); | ||
assert!(!brackets_are_balanced("([{])")); | ||
} | ||
|
||
#[test] | ||
#[ignore] | ||
fn paired_and_wrong_nested_brackets() { | ||
assert!(!Brackets::from("[({]})").are_balanced()); | ||
assert!(!brackets_are_balanced("[({]})")); | ||
} | ||
|
||
#[test] | ||
#[ignore] | ||
fn math_expression() { | ||
assert!(Brackets::from("(((185 + 223.85) * 15) - 543)/2").are_balanced()); | ||
assert!(brackets_are_balanced("(((185 + 223.85) * 15) - 543)/2")); | ||
} | ||
|
||
#[test] | ||
#[ignore] | ||
fn complex_latex_expression() { | ||
let input = "\\left(\\begin{array}{cc} \\frac{1}{3} & x\\\\ \\mathrm{e}^{x} &... x^2 \ | ||
\\end{array}\\right)"; | ||
assert!(Brackets::from(input).are_balanced()); | ||
assert!(brackets_are_balanced(input)); | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
note: If the crate name were
brackets
, I would have wanted the name to bebrackets::are_balanced
to avoid repetition. However, looks like we are usingbracket_push
. So I thinkbrackets_are_balanced
has to be the name.It can be worth a discussion whether to change
bracket_push
(why is it even called bracket-push??? exercism/problem-specifications#693 ) but this PR does not need to depend on it.