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 e7adb6d commit 5aff753Copy full SHA for 5aff753
src/test/java/com/thealgorithms/stacks/DuplicateBracketsTest.java
@@ -48,8 +48,8 @@ void testDuplicateBracketsFalseCases(String input) {
48
49
static Stream<Arguments> provideInputsThatShouldReturnFalse() {
50
return Stream.of(Arguments.of("( )"), // whitespace inside brackets
51
- Arguments.of("abc + def"), // no brackets
52
- Arguments.of("(a + (b * c)) - (d / e)") // complex, but no duplicates
+ Arguments.of("abc + def"), // no brackets
+ Arguments.of("(a + (b * c)) - (d / e)") // complex, but no duplicates
53
);
54
}
55
0 commit comments