02 2021 档案
摘要:using System; namespace leecode1 { class Program { static void Main(string[] args) { int[][] matrix = new int[3][]; matrix[0] =new int[] { 1,2,3,4}; m
阅读全文
摘要:using System; namespace leecode1 { class Program { static void Main(string[] args) { string outString= string.Empty; string s1 = "abc"; string s2 = "p
阅读全文
摘要:using System; namespace leecode1 { class Program { static void Main(string[] args) { int target = 100; int[] nums = { 1, 50, 40, 60 }; for(int i = 0;
阅读全文