Advertisement
Guest User

Untitled

a guest
Jul 20th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. public class MyClass {
  2. public static void main(String args[]) {
  3. System.out.println(correctBrackets("([()])") == true);
  4. System.out.println(correctBrackets("([)]") == false);
  5. System.out.println(correctBrackets("()()[]") == true);
  6. }
  7.  
  8. public static boolean correctBrackets(String s){
  9. return false;
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement