码迷,mamicode.com
首页 >  
搜索关键字:appear    ( 1294个结果
LeetCode - Remove Duplicates from Sorted List
Description: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....
分类:其他好文   时间:2015-04-11 23:48:58    阅读次数:121
[LeetCode] Excel Sheet Column Number
Excel Sheet Column Number Related to question Excel Sheet Column Title Given a column title as appear in an Excel sheet, return its corresponding column number. For example: A -> 1...
分类:其他好文   时间:2015-04-11 22:38:26    阅读次数:139
Leetcode (6) 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 place with...
分类:其他好文   时间:2015-04-11 18:02:04    阅读次数:100
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-04-10 22:03:00    阅读次数:113
LeetCode 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-04-10 15:34:01    阅读次数:104
hdu3518---Boring counting(后缀数组,对后缀分组)
Problem Description 035 now faced a tough problem,his english teacher gives him a string,which consists with n lower case letter,he must figure out how many substrings appear at least twice,moreover,s...
分类:编程语言   时间:2015-04-09 15:34:55    阅读次数:213
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-04-08 19:37:19    阅读次数:100
Excel Sheet Column Number
Related to question Excel Sheet Column TitleGiven a column title as appear in an Excel sheet, return its corresponding column number.For example: A...
分类:其他好文   时间:2015-04-08 19:27:35    阅读次数:123
LeetCode26/27/80 Remove Duplicates from Sorted Array I and II/Remove Element**
题目: 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 pla...
分类:其他好文   时间:2015-04-05 22:01:48    阅读次数:178
【leetcode】Excel Sheet Column Number
Related to questionExcel Sheet Column TitleGiven a column title as appear in an Excel sheet, return its corresponding column number.For example:A -> 1...
分类:其他好文   时间:2015-04-05 18:51:24    阅读次数:129
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!