自定义博客皮肤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)
  • 收藏
  • 关注

转载 zigzag Convert

The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed fo...

2015-06-22 22:21:00 82

转载 Median of Two Sorted Arrays

There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity...

2015-06-22 22:11:00 73

转载 Longest Substring Without Repeating Characters

Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters...

2015-06-22 22:06:00 91

转载 Add two numbers

publicListNodeaddTwoNumbers(ListNodel1,ListNodel2){ intcarry=0; ListNodenewHead=newListNode(0);//头结点 ListN...

2015-06-22 21:45:00 59

转载 Palindrome Number

publicclassSolution{ publicbooleanisPalindrome(intx){ //negativenumbersarenotpalindrome if(x<0) returnfalse; ...

2015-06-22 21:36:00 49

转载 leetcode Two sum

public class Solution { public int[] twoSum(int[] numbers, int target) { HashMap<Integer, Integer> map = new HashMap<Integer, Int...

2015-06-22 21:28:00 70

空空如也

空空如也

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

TA关注的人

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