随笔分类 - leetcode
leetcode
摘要:// See https://aka.ms/new-console-template for more information int[] nums={0,1,1,2,3,4,5}; int[] stockes={8,5,6,54,5,6,7,8}; int[] b={2,232,4,5,6,8};
阅读全文
摘要: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;
阅读全文