码迷,mamicode.com
首页 >  
搜索关键字:problems    ( 6275个结果
LeetCode (11): Container With Most Water
https://leetcode.com/problems/regular-expression-matching/【描述】Givennnon-negative integersa1,a2, ...,an, where each represents a point at coordinate (i...
分类:其他好文   时间:2015-09-20 13:18:02    阅读次数:191
LeetCode:Move Zeroes - 将数组中的0移到最后
1、题目名称 Move Zeroes(将数组中的0移到最后) 2、题目地址 https://leetcode.com/problems/move-zeroes 3、题目内容 英文:Given an array nums, write a function to move all 0‘s to the end of it while ...
分类:编程语言   时间:2015-09-20 09:17:54    阅读次数:181
LeetCode (10): Regular Expression Matching [HARD]
https://leetcode.com/problems/regular-expression-matching/【描述】Implement regular expression matching with support for'.'and'*'.'.' Matches any single c...
分类:其他好文   时间:2015-09-20 06:59:37    阅读次数:156
LeetCode(125)题解--Valid Palindrome
https://leetcode.com/problems/valid-palindrome/题目:Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignori...
分类:其他好文   时间:2015-09-19 18:09:40    阅读次数:120
LeetCode:Valid Number - 判断字符串中内容是否为数字
1、题目名称 Valid Number(判断字符串中内容是否为数字) 2、题目地址 https://leetcode.com/problems/valid-number/ 3、题目内容 英文:Validate if a given string is numeric. 中文:给出一个字符串,检查这个...
分类:其他好文   时间:2015-09-19 15:26:04    阅读次数:212
LeetCode(88)题解-- Merge Sorted Array
https://leetcode.com/problems/merge-sorted-array/题目:Given two sorted integer arraysnums1andnums2, mergenums2intonums1as one sorted array.Note:You may ...
分类:其他好文   时间:2015-09-19 12:17:40    阅读次数:104
zoj 3469 Food Delivery 区间dp + 提前计算费用
Time Limit:2 Seconds Memory Limit:65536 KBWhen we are focusing on solving problems, we usually prefer to stay in front of computers rather than go out...
分类:其他好文   时间:2015-09-19 10:55:52    阅读次数:161
奇妙的位运算
https://leetcode.com/problems/single-number/参考:http://www.cnblogs.com/zichi/p/4795049.html
分类:其他好文   时间:2015-09-19 00:50:39    阅读次数:356
[LeetCode]题解(python):015-3Sum
题目来源:https://leetcode.com/problems/3sum/题意分析: 这道题目是输入一个数组nums。找出所有的3个数使得这3个数之和为0.要求1.输出的3个数按小到大排序,2.3个数的组合不重复。比如输入[-1,0,1,2,-1,-4],返回的应该是[[-1,0,1],[-....
分类:编程语言   时间:2015-09-18 23:25:40    阅读次数:229
Effective Java 英文 第二版 读书笔记 Item 7:Avoid finalizers
Finalizers are unpredictable,often dangerous,and generally unnecessary.Their use can cause erratic behavior,poor performance,and portability problems....
分类:编程语言   时间:2015-09-18 21:49:06    阅读次数:236
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!