> For the complete documentation index, see [llms.txt](https://dailyjournal.gitbook.io/solutions/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dailyjournal.gitbook.io/solutions/leetcode-solutions/problems/algorithms/easy/844.-backspace-string-compare.md).

# 844. Backspace String Compare

{% tabs %}
{% tab title="C#" %}

```csharp
public class Solution {
    public bool BackspaceCompare(string s, string t) {
        return GetString(s) == GetString(t);
    }
    
    public string GetString(string str) {
        int count = 0;
        var sb = new StringBuilder();
        for(int i = str.Length - 1; i >= 0; i--){
            if(str[i] == '#'){
                count++;
                continue;
            }
            else if(count > 0)
                count--;
            else{
                sb.Append(str[i]);
            }
        }
        return sb.ToString();
    }
}
```

* **Stack**

```csharp
public class Solution {
    public bool BackspaceCompare(string s, string t) {
        var sStack = new Stack<char>();
        var tStack = new Stack<char>();
        
        foreach(var c in s){
            if(c == '#') sStack.TryPop(out char ch);
            else sStack.Push(c);
        }
        foreach(var c in t){
            if(c == '#') tStack.TryPop(out char ch);
            else tStack.Push(c);
        }
        
        while(sStack.Count > 0 && tStack.Count > 0){
            if(sStack.Pop() != tStack.Pop()) return false;
        }
        
        return sStack.Count == 0 && tStack.Count == 0;
    }
}
```

{% endtab %}
{% endtabs %}
