Easy
Given two strings s and t, return true if they are equal after typing them into empty text editors. # is a backspace character.
Input: s = "ab#c", t = "ad#c" Output: true
Input: s = "a##c", t = "#a#c" Output: true
Input: s = "a#c", t = "b" Output: false