摘要: 1Mbps代表每秒传输1,000,000位(bit 阅读全文
posted @ 2019-12-19 21:36 燕十三丶 阅读(778) 评论(0) 推荐(0) 编辑
摘要: class Solution { public double findMedianSortedArrays(int[] A, int[] B) { int m = A.length; int n = B.length; if (m > n) { // to ensure m<=n int[] tem 阅读全文
posted @ 2019-12-19 16:45 燕十三丶 阅读(397) 评论(0) 推荐(0) 编辑
摘要: public class Solution { public int lengthOfLongestSubstring(String s) { int n = s.length(); int ans = 0; for (int i = 0; i < n; i++) for (int j = i + 阅读全文
posted @ 2019-12-19 15:22 燕十三丶 阅读(911) 评论(0) 推荐(0) 编辑
摘要: public ListNode addTwoNumbers(ListNode l1, ListNode l2) { ListNode dummyHead = new ListNode(0); ListNode p = l1, q = l2, curr = dummyHead; int carry = 阅读全文
posted @ 2019-12-19 11:31 燕十三丶 阅读(1000) 评论(0) 推荐(0) 编辑
摘要: class Solution { public int[] twoSum(int[] nums, int target) { for (int i = 0; i < nums.length;i++){ for(int j = i + 1;j < nums.length;j++){ if (nums[ 阅读全文
posted @ 2019-12-19 09:58 燕十三丶 阅读(4178) 评论(0) 推荐(0) 编辑
AmazingCounters.com