https://leetcode.com/problems/backspace-string-compare/ 1. 2022.01.22 시도 소요시간: 28분(구상 3분, 풀이 25분) class Solution { public boolean backspaceCompare(String s, String t) { char[] sa = new char[201]; char[] ta = new char[201]; int sl =convertAndGetLength(s, sa); int tl = convertAndGetLength(t, ta); if (sl == tl) { for (int x=0; x