알고리즘 문제풀이/[C++] Leetcode
Leetcode 문제 844번 Backspace String Compare
문제 출처:https://leetcode.com/problems/backspace-string-compare/ Backspace String Compare - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com '#'가 나오면 자신을 포함한 앞에 하나까지 제거해줍니다. 코드는 다음과 같습니다: class Solution { public: bool backspaceCompare(string s, string t) { remove_string(s) ; remove_str..