网站首页 站内搜索

搜索结果

查询Tags标签: Leetcode1143,共有 2条记录
  • Leetcode1143. 最长公共子序列(c#)

    题解:力扣 public class Solution{public int LongestCommonSubsequence(string text1, string text2){int num1 = text1.Length;int num2 = text2.Length;int[,] dp = new int[num1 + 1, num2 + 1];for(int i = 0; i < num1; i++){for(int j = 0; j < num2; j++)…

    2021/11/10 1:09:54 人评论 次浏览
  • Leetcode1143. 最长公共子序列(c#)

    题解:力扣 public class Solution{public int LongestCommonSubsequence(string text1, string text2){int num1 = text1.Length;int num2 = text2.Length;int[,] dp = new int[num1 + 1, num2 + 1];for(int i = 0; i < num1; i++){for(int j = 0; j < num2; j++)…

    2021/11/10 1:09:54 人评论 次浏览
扫一扫关注最新编程教程