码迷,mamicode.com
首页 >  
搜索关键字:no space    ( 18273个结果
删除一个字符串中连续超过一次的空格
问题 删除一个字符串中连续超过一次的空格。 解决(Python) #! /usr/bin/env python #coding:utf-8 def del_space(string): split_string = string.split(" ") #以空格为分割,生成list,list中如果含有空格,则该空格是连续空格中的后一个 string_list =...
分类:其他好文   时间:2014-06-16 11:21:52    阅读次数:204
LeetCode ---- Merge Sorted Array
题目链接Problem discriptionGiven two sorted integer arrays A and B, merge B into A as one sorted array.Note:You may assume that A has enough space (size t...
分类:其他好文   时间:2014-06-16 11:12:36    阅读次数:192
[Leetcode] Word Break
Question:Given a stringsand a dictionary of wordsdict, determine ifscan be segmented into a space-separated sequence of one or more dictionary words.F...
分类:其他好文   时间:2014-06-16 07:32:47    阅读次数:186
leetcode--Palindrome Number
Determine whether an integer is a palindrome. Do this without extra space.click to show spoilers.Some hints:Could negative integers be palindromes? (i...
分类:其他好文   时间:2014-06-14 08:52:31    阅读次数:265
Leetcode:Linked List Cycle 链表是否存在环
Linked List Cycle:Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?解题分析:大致思想就是设置两个指针,一个指针每次...
分类:其他好文   时间:2014-06-13 14:41:54    阅读次数:238
[Leetcode] Sort List
Question:Sort a linked list inO(nlogn) time using constant space complexity.Solution:Merge sort.找到链表的中间的那个ListNode. 1 /** 2 * Definition for singly-l....
分类:其他好文   时间:2014-06-12 17:59:34    阅读次数:285
打开xmind文件报错
xmind文件在拷贝到其他电脑上的时候,打开报如下的错误信息:‘java.lang.OutOfMemoryError‘:Javaheapspace如下图所示:具体原因就不再次做过多的解释了,按照如下的方法修改后,本人的文件已可以正常打开到XMIND安装的根目录下面找到XMind.ini文件,并打开查找-vmargs一般在文..
分类:其他好文   时间:2014-06-10 23:53:53    阅读次数:495
Unique Paths II
题目 Follow up for "Unique Paths": Now consider if some obstacles are added to the grids. How many unique paths would there be? An obstacle and empty space is marked as 1 and 0 respective...
分类:其他好文   时间:2014-06-10 18:28:49    阅读次数:207
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!