You are given an n x n 2D matrix representing an image.
Rotate the image by 90 degrees (clockwise).
Follow up:
Could you do this in-place?
参考LeetCode[Array]: Spiral Matrix II的迭代思路,先完成最外环的旋转,然后...
分类:
其他好文 时间:
2014-12-04 21:43:42
阅读次数:
282
City SearchWe want to create an endpoint that we can use to filter cities. Follow the tasks below to to create this new route.Create a new route forGE...
分类:
Web程序 时间:
2014-12-04 19:50:26
阅读次数:
242
svn认证失败Windows下:当TortoiseSVNsvn客户端,如果遇到“认证错误”而且又不弹出让你重新登录的窗口时,错误信息Java代码Commitfailed(detailsfollow):UnabletoconnecttoarepositoryatURL‘svn://localhost‘认证失败conf文件下的svnserve.conf,将#password-db=passwd除去行..
分类:
其他好文 时间:
2014-12-04 06:38:28
阅读次数:
233
RKCardViewBeautiful Twitter / Facebook style cards (built with@JaredTMoskowitz)Follow me on Twitter @cwRichardKimOrCheck out my Medium posts on UI / U...
分类:
其他好文 时间:
2014-12-04 00:47:25
阅读次数:
190
Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?使用双指针fast和slow,fast每次走两步,slow每次走一步,如果fast追...
分类:
其他好文 时间:
2014-12-03 23:04:47
阅读次数:
287
Given a linked list, return the node where the cycle begins. If there is no cycle, returnnull.Follow up:Can you solve it without using extra space?/**...
分类:
其他好文 时间:
2014-12-03 13:57:58
阅读次数:
163
Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?/** * Definition for singly-linked list. *...
分类:
其他好文 时间:
2014-12-03 13:54:01
阅读次数:
152
Given a linked list, determine if it has a cycle in it. Follow up:Can you solve it without using extra space?开始以为这道题只需要注意不使用额外空间即可,于是写了个时间复杂度为O(n^2)暴力...
分类:
其他好文 时间:
2014-12-02 14:56:30
阅读次数:
177
Given a linked list, return the node where the cycle begins. If there is no cycle, return null. Follow up:Can you solve it without using extra space?这...
分类:
其他好文 时间:
2014-12-02 14:55:22
阅读次数:
195
Given a m x n matrix, if an element is 0, set its entire row and column to 0. Do it in place.
Follow up:
Did you use extra space?
A straight forward solution using O(mn) space is probably a bad ide...
分类:
其他好文 时间:
2014-11-30 17:00:32
阅读次数:
223