摘要:
使用socket创建服务器 点击查看代码 using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Net; using System.Net.Sockets; 阅读全文
摘要:
1.[两数之和] 给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 target 的那 两个 整数,并返回它们的数组下标。 输入:nums = [2,7,11,15], target = 9 输出:[0,1] 暴力法 public int[] TwoSum( 阅读全文