自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 LeetCode 003 JAVA

#LeetCode 003 JAVA//滑动窗口class Solution { public int lengthOfLongestSubstring(String s) { HashMap<Character, Integer> map = new HashMap<Character, Integer>(); int firs...

2020-02-12 20:48:03 92

原创 LeetCode 002 JAVA

LeetCode 001 JAVA/** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */class Solution { public Li...

2020-02-11 21:34:41 71

原创 LeetCode 001 JAVA

LeetCode 001 JAVAclass 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[j] == target ...

2020-02-11 21:33:22 102

原创 PAT C++ 1003A

PAT C++ 1003A#include <iostream>#include <algorithm>#include <vector>#include <map>#include <set>#include <stack>#include <string>#include <queue&g...

2020-02-11 18:57:39 103

原创 PAT C++ 1002A

PAT C++ 1002A#include <cstdio>#include <iostream>#include <algorithm>#define max_n 1001using namespace std;int main(){ float ans[max_n] = {0}; int num; int N; ...

2020-02-11 18:55:52 82

原创 PAT C++ 1001A

PAT C++ 1001A#include <cstdio>#include <stdio.h>#include <iostream>#include <algorithm>#include <string.h>#include <string>#include <cstring>#define M...

2020-02-11 18:52:46 101

空空如也

空空如也

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

TA关注的人

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