Stack

    (프로그래머스/Java) 짝지어 제거하기

    (프로그래머스/Java) 짝지어 제거하기

    난이도: Level 2 프로그래밍 언어: Java 문제명: 짝지어 제거하기 푼일자: 2021년 5월 URL : https://programmers.co.kr/learn/courses/30/lessons/12973 Solution.cs 문제를 이해하고 코드작성 후 결과가 정상적으로 나오는지 확인 해 보았다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 public int solution(String s) { ArrayList array = new ArrayList(Arrays.asList(s.split(""))); int i = 0; while(i