
形状
文章平均质量分 66
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 280. Wiggle Sort(摇摆排序)
原题网址:https://leetcode.com/problems/wiggle-sort/Given an unsorted array nums, reorder it in-place such that nums[0] = nums[2] .For example, given nums = [3, 5, 2, 1, 6, 4], one possible ans原创 2016-04-14 07:27:02 · 936 阅读 · 0 评论 -
LeetCode 281. Zigzag Iterator(之字形迭代器)
原题网址:https://leetcode.com/problems/zigzag-iterator/Given two 1d vectors, implement an iterator to return their elements alternately.For example, given two 1d vectors:v1 = [1, 2]v2 = [3, 4原创 2016-04-14 07:40:12 · 1012 阅读 · 0 评论 -
LeetCode LeetCode 205. Isomorphic Strings(同形词)
原题网址:https://leetcode.com/problems/isomorphic-strings/Given two strings s and t, determine if they are isomorphic.Two strings are isomorphic if the characters in s can be replaced to get t.原创 2016-05-04 07:58:15 · 403 阅读 · 0 评论 -
LeetCode 246. Strobogrammatic Number
原题网址:https://leetcode.com/problems/strobogrammatic-number/A strobogrammatic number is a number that looks the same when rotated 180 degrees (looked at upside down).Write a function to determ原创 2016-04-07 06:08:22 · 1108 阅读 · 0 评论 -
LeetCode 6. ZigZag Conversion(之字形)
原题网址:https://leetcode.com/problems/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原创 2016-05-19 03:47:47 · 466 阅读 · 0 评论 -
LeetCode 54. Spiral Matrix(螺旋矩阵)
原题网址:https://leetcode.com/problems/spiral-matrix/Given a matrix of m x n elements (m rows, n columns), return all elements of the matrix in spiral order.For example,Given the following mat原创 2016-05-21 06:56:42 · 713 阅读 · 0 评论 -
LeetCode 59. Spiral Matrix II(螺旋矩阵)
原题网址:https://leetcode.com/problems/spiral-matrix-ii/Given an integer n, generate a square matrix filled with elements from 1 to n2 in spiral order.For example,Given n = 3,You should retu原创 2016-05-21 07:50:26 · 418 阅读 · 0 评论