Given two strings s and t where '#' represents a backspace, return true if they are equal after processing all backspaces.
Example 1:
Input: ab#c ad#c Output: true
Example 2:
Input: a#c b Output: false
Input format: Line 1: s. Line 2: t.
Output format: true or false.