自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

roguesir的博客

ML、DM、DL

  • 博客(7)
  • 资源 (1)
  • 问答 (13)
  • 收藏
  • 关注

原创 【LeetCode】3. Longest Substring Without Repeating Characters

IntroduceGiven a string, find the length of the longest substring without repeating characters.Example 1:Input: "abcabcbb"Output: 3 Explanation: The answer is "abc", with the length of 3. Examp...

2019-03-02 17:15:55 1267

原创 【LeetCode】70. Climbing Stairs

IntroductionYou are climbing a stair case. It takes n steps to reach to the top.Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?Note: Given n will be...

2019-03-01 18:01:33 923

原创 【LeetCode】69. Sqrt(x)

IntroductionImplement int sqrt(int x).Compute and return the square root of x, where x is guaranteed to be a non-negative integer.Since the return type is an integer, the decimal digits are truncat...

2019-03-01 18:00:43 948

原创 【LeetCode】67. Add Binary

IntroductionGiven two binary strings, return their sum (also a binary string).The input strings are both non-empty and contains only characters 1 or 0.Example 1:Input: a = "11", b = "1"Output: "1...

2019-03-01 17:59:31 961

原创 【LeetCode】66. Plus One

introductionGiven a non-empty array of digits representing a non-negative integer, plus one to the integer.The digits are stored such that the most significant digit is at the head of the list, and ...

2019-03-01 17:58:26 702

原创 【LeetCode】9. Palindrome Number

IntroductionDetermine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward.Example 1:Input: 121Output: trueExample 2:Input: -121Output: fal...

2019-03-01 17:55:17 656

原创 【LeetCode】7. Reverse Integer

IntroductionGiven a 32-bit signed integer, reverse digits of an integer.Example 1:Input: 123Output: 321Example 2:Input: -123Output: -321Example 3:Input: 120Output: 21Note:Assume we are ...

2019-03-01 17:54:00 625

空空如也

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

TA关注的人

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