thorpedosg

pHw9MSKs

Aug 6th, 2018
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. %09%09StringBuilder+newLine+%3D+new+StringBuilder%28line6%29%3B%0A%09%09boolean+keepLooping+%3D+true%3B%0A%09%09while+%28keepLooping%29+%7B%0A%0A%09%09%09int+firstBracket+%3D+newLine.indexOf%28%22%28%22%29%3B%0A%09%09%09int+lastBracket+%3D+newLine.lastIndexOf%28%22%29%22%29%3B%0A%0A%09%09%09if+%28firstBracket+%21%3D+-1+%26%26+lastBracket+%21%3D+-1%29+%7B%0A%09%09%09%09if%28firstBracket+%3E+lastBracket%29%7B%0A%09%09%09%09%09%2F%2Fwe+hit+a+situation+where+the+string+has+%22%29%28%22+it+can+never+be+balanced%0A%09%09%09%09%09System.out.println%28%22NO%22%29%3B%0A%09%09%09%09%09keepLooping+%3D+false%3B%0A%09%09%09%09%09break%3B%0A%09%09%09%09%7D%0A%09%09%09%09newLine.setCharAt%28lastBracket%2C+%27+%27%29%3B%0A%09%09%09%09newLine.setCharAt%28firstBracket%2C+%27+%27%29%3B%0A%09%09%09%09continue%3B%0A%09%09%09%7D%0A%09%09%09if+%28firstBracket+%3D%3D+-1+%26%26+lastBracket+%3D%3D+-1%29+%7B%0A%09%09%09%09%2F%2F+no+more+brackets+or+emoticons%0A%09%09%09%09System.out.println%28%22YES%22%29%3B%0A%09%09%09%09keepLooping+%3D+false%3B%0A%09%09%09%7D%0A%09%09%09if+%28firstBracket+%21%3D+-1%29+%7B%0A%09%09%09%09%2F%2F+possible+emoticon+%3A%28%0A%09%09%09%09if+%28newLine.charAt%28firstBracket+-+1%29+%3D%3D+%27%3A%27%29+%7B%0A%09%09%09%09%09newLine.setCharAt%28firstBracket%2C+%27+%27%29%3B%0A%09%09%09%09%09newLine.setCharAt%28firstBracket+-+1%2C+%27+%27%29%3B%0A%09%09%09%09%09continue%3B%0A%09%09%09%09%7D+else+%7B%0A%09%09%09%09%09System.out.println%28%22NO%22%29%3B%0A%09%09%09%09%09keepLooping+%3D+false%3B%0A%09%09%09%09%7D%0A%09%09%09%7D%0A%09%09%09if+%28lastBracket+%21%3D+-1%29+%7B%0A%09%09%09%09%2F%2F+possible+emoticon+%3A%29%0A%09%09%09%09if+%28newLine.charAt%28lastBracket+-+1%29+%3D%3D+%27%3A%27%29+%7B%0A%09%09%09%09%09newLine.setCharAt%28lastBracket%2C+%27+%27%29%3B%0A%09%09%09%09%09newLine.setCharAt%28lastBracket+-+1%2C+%27+%27%29%3B%0A%09%09%09%09%7D+else+%7B%0A%09%09%09%09%09System.out.println%28%22NO%22%29%3B%0A%09%09%09%09%09keepLooping+%3D+false%3B%0A%09%09%09%09%7D%0A%09%09%09%7D%0A%09%09%7D
Add Comment
Please, Sign In to add comment