Problem
Given two stringss and t, return true if they are equal when both are typed into empty text editors. '#' means a backspace character.
Note that after backspacing an empty text, the text will continue empty.
Examples
Constraints
- 1 <= s.length, t.length <= 200
sandtonly contain lowercase letters and'#'characters.
O(n) time and O(1) space?