Leetcode刷题笔记-dp

44. Wildcard Matching func isMatch(s string, p string) bool { dp := make([][]bool, len(s)+1) // dp[s_idx][p_idx] for i := range dp { dp[i] = make([]bool, len(p)+1) } // i
相关文章
相关标签/搜索