자바 백준 5357번 브론즈 4 https://www.acmicpc.net/problem/5357 5357번: Dedupe Redundancy in this world is pointless. Let’s get rid of all redundancy. For example AAABB is redundant. Why not just use AB? Given a string, remove all consecutive letters that are the same. www.acmicpc.net 문제 보기 분류: 구현, 문자열 문제 풀기 테스트 케이스 만큼 반복을 하면서 각 문자열을 입력 받는다. 입력받은 문자열을 split() 함수를 통해 String array 분할하여 저장한다. 분할 저장된 array 에서..