码迷,mamicode.com
首页 >  
搜索关键字:appear    ( 1294个结果
【LeetCode】Excel Sheet Column Title
Given a positive integer, return its corresponding column title as appear in an Excel sheet.For example: 1 -> A 2 -> B 3 -> C ... 26 ->...
分类:其他好文   时间:2015-05-07 00:27:12    阅读次数:104
Remove Duplicates from Sorted List I & II
Title:Given a sorted linked list, delete all duplicates such that each element appear onlyonce.For example,Given1->1->2, return1->2.Given1->1->2->3->3...
分类:其他好文   时间:2015-05-06 12:51:16    阅读次数:99
leetcode-Remove Duplicates from Sorted Array
题目描述 Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length. Do not allocate extra space for another array, you must do this in ...
分类:其他好文   时间:2015-05-04 15:35:18    阅读次数:140
【leetcode】Excel Sheet Column Title & Excel Sheet Column Number (easy)
Given a positive integer, return its corresponding column title as appear in an Excel sheet.For example: 1 -> A 2 -> B 3 -> C ... 26 ->...
分类:其他好文   时间:2015-05-04 13:46:54    阅读次数:126
Remove Duplicates from Sorted List
题目描述: Given a sorted linked list, delete all duplicates such that each element appear only once. For example, Given 1->1->2, return 1->2. Given 1->1->2->3->3, return 1->2->3. 解题思路: 删除链表中...
分类:其他好文   时间:2015-05-04 11:57:51    阅读次数:118
Java for LeetCode 026 Remove Duplicates from Sorted Array
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.Do not allocate extra space for...
分类:编程语言   时间:2015-05-03 21:57:40    阅读次数:132
Consecutive Numbers
Write a SQL query to find all numbers that appear at least three times consecutively....
分类:其他好文   时间:2015-05-01 17:29:32    阅读次数:103
Leetcode#168Excel Sheet Column Title
Givenapositiveinteger,returnitscorrespondingcolumntitleasappearinanExcelsheet.Forexample:1->A 2->B 3->C ... 26->Z 27->AA 28->ABpublicclassSolution{publicStringconvertToTitle(intn){Stringc="";while(n>0){intx=n%26;if(x==0){c=String.valueO..
分类:其他好文   时间:2015-04-29 07:23:44    阅读次数:118
(LeetCode 83)Remove Duplicates from Sorted Lists
Given a sorted linked list, delete all duplicates such that each element appear only once. For example,Given 1->1->2, return 1->2.Given 1->1->2->3->3,...
分类:其他好文   时间:2015-04-29 00:18:28    阅读次数:171
Remove Duplicates from Sorted List
Given a sorted linked list, delete all duplicates such that each element appear onlyonce.For example,Given1->1->2, return1->2.Given1->1->2->3->3, retu...
分类:其他好文   时间:2015-04-28 17:50:11    阅读次数:121
1294条   上一页 1 ... 95 96 97 98 99 ... 130 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!