We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65efd5d commit e7adb6dCopy full SHA for e7adb6d
src/test/java/com/thealgorithms/stacks/DuplicateBracketsTest.java
@@ -47,8 +47,7 @@ void testDuplicateBracketsFalseCases(String input) {
47
}
48
49
static Stream<Arguments> provideInputsThatShouldReturnFalse() {
50
- return Stream.of(
51
- Arguments.of("( )"), // whitespace inside brackets
+ return Stream.of(Arguments.of("( )"), // whitespace inside brackets
52
Arguments.of("abc + def"), // no brackets
53
Arguments.of("(a + (b * c)) - (d / e)") // complex, but no duplicates
54
);
0 commit comments