MeiZhe

Results 1 comments of MeiZhe

迭代+空间压缩 ```csharp public class Solution { public bool IsMatch(string s, string p) { bool before, tmp; bool[] dp = new bool[p.Length + 1]; dp[0] = true; for (int j =...