自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

courage的专栏

内心的强大才是真的强大。

  • 博客(4)
  • 资源 (4)
  • 收藏
  • 关注

原创 LeetCode9_Palindrome Number

My answer  /**     * case1: x is negative, x is definitely not palindrome     * case2: x is between 0 and 9, x is palindrome.included by case3      * case3: x has more than 1 digit.     *     A

2015-01-23 02:40:40 879

原创 LeetCode3_Longest Substring Without Repeating Characters

My Answer1. 第三次提交public int lengthOfLongestSubstring(String s) { if (s == null || s.length() == 0) { return 0; } int start = 0; int maxLength = 0;

2015-01-07 16:06:10 660

原创 LeetCode1_Two Sum

My answer第三遍提交 /** * running time : O(n) */ public int[] twoSum(int[] numbers, int target) { int[] result = new int[2]; HashMap map = new HashMap();

2015-01-06 07:15:06 1654

原创 LeetCode2_Add Two Numbers

My answer1. 第二遍提交public ListNode addTwoNumbers(ListNode l1, ListNode l2) { if (l1 == null) { return l2; } if (l2 == null) { return l1; }

2015-01-06 06:54:52 902

Mastering the Information Age Solving Problems with Visual Analytics

this document is about visual analytic, data management, data mining

2018-07-20

matlab常用命令.pdf

电子手册,内容是matlab 常用命令。方便查询。

2011-04-18

MySQL常用命令总结

连接和使用MySQL数据库 MySQL常用命令:created database mldn

2008-09-30

MySQL常用命令视频教程及笔记

MySQL常用命令视频教程及笔记(为PDF格式)

2008-09-30

空空如也

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

TA关注的人

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