Guest User

Untitled

a guest
Dec 2nd, 2015
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.31 KB | None | 0 0
  1. public class Advent1 {
  2.     public static void main(String[] args) {
  3.         String input = "()()(()()()(()() .. etc... (((";
  4.         int floor = 0;
  5.  
  6.         for (int i = 0; i < input.length(); i++) {
  7.             floor += (input.charAt(i) == '(') ? 1 : -1;
  8.         }
  9.         System.out.println(floor);
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment