自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

转载 2019年7月22日 - LeetCode0004

https://leetcode-cn.com/problems/median-of-two-sorted-arrays/submissions/我的解法:我看到了那个log的要求,也第一时间想到了二分,但是实在想不出咋二分,最后只能写个暴力的... 1 class Solution { 2 public double findMedianSortedAr...

2019-07-22 20:37:00 119

转载 2019年7月20日 - LeetCode0003

https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/submissions/我的解法: 1 class Solution { 2 HashSet<Character> set = new HashSet<Character>();...

2019-07-20 22:52:00 102

转载 2019年7月20日 - LeetCode0002

https://leetcode-cn.com/problems/add-two-numbers/submissions/我的方法: 1 /** 2 * Definition for singly-linked list. 3 * public class ListNode { 4 * int val; 5 * ListNode n...

2019-07-20 20:50:00 94

转载 2019年7月19日 - LeetCode0001

https://leetcode-cn.com/problems/two-sum/我的方法: 1 class Solution { 2 public int[] twoSum(int[] nums, int target) { 3 int[] ans = new int[2]; 4 for(int i=0;i&lt...

2019-07-19 17:12:00 85

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除