문제 // Codility // Stacks and Queues // Nesting 업데이트 :: 2018.08.23 문제코드결과문제Stacks and Queues > Nesting Determine whether a given string of parentheses (single type) is properly nested. 코드1차 풀이class Solution { public int solution(String S) { if(S.equals("")) return 1; int stack = 0; for(int i=0; i CS/코딜리티 2018.08.23