05 2016 档案

9. Palindrome Number
摘要:Determine whether an integer is a palindrome. Do this without extra space. Some hints: Could negative integers be palindromes? (ie, -1) 阅读全文

posted @ 2016-05-30 09:28 joannae 阅读(147) 评论(0) 推荐(0)

8. String to Integer (atoi)
摘要:mplement atoi to convert a string to an integer. Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below a 阅读全文

posted @ 2016-05-19 20:08 joannae 阅读(189) 评论(0) 推荐(0)

7. Reverse Integer
摘要:Reverse digits of an integer. Example1: x = 123, return 321Example2: x = -123, return -321 Have you thought about this? Here are some good questions t 阅读全文

posted @ 2016-05-12 06:28 joannae 阅读(199) 评论(0) 推荐(0)

6. ZigZag Conversion
摘要: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 font 阅读全文

posted @ 2016-05-11 19:50 joannae 阅读(229) 评论(0) 推荐(0)

5. Longest Palindromic Substring
摘要:Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique longes 阅读全文

posted @ 2016-05-10 11:07 joannae 阅读(194) 评论(0) 推荐(0)

4. 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 sh 阅读全文

posted @ 2016-05-05 19:31 joannae 阅读(143) 评论(0) 推荐(0)

3. Longest Substring Without Repeating Characters
摘要:Given a string, find the length of the longest substring without repeating characters. Examples: Given "abcabcbb", the answer is "abc", which the leng 阅读全文

posted @ 2016-05-02 20:07 joannae 阅读(169) 评论(0) 推荐(0)

2. Add Two Numbers
摘要:You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single 阅读全文

posted @ 2016-05-01 21:20 joannae 阅读(160) 评论(0) 推荐(0)

导航