码迷,mamicode.com
首页 >  
搜索关键字:leetcode1    ( 53个结果
Count Complete Tree Nodes || LeetCode1
/** * Definition for a binary tree node. * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; */#define ...
分类:其他好文   时间:2015-06-10 14:08:26    阅读次数:100
LeetCode1 Two Sum
题目: Given an array of integers, find two numbers such that they add up to a specific target number. The function twoSum should return indices of the two numbers such that they add up to the target,w...
分类:其他好文   时间:2015-06-06 14:59:04    阅读次数:124
LeetCode1:Two Sum
Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the two nu...
分类:其他好文   时间:2015-06-05 19:12:16    阅读次数:155
Valid Number--LeetCode
1 class Solution { 2 public: 3 bool isNumber(string s) { 4 if(s == " ") return false; 5 int i = 0; 6 int j = s.size()-1; 7 while(s[i]...
分类:其他好文   时间:2015-05-20 17:56:04    阅读次数:131
leetcode1-Two Sums
题目https://leetcode.com/problems/two-sum/Given an array of integers, find two numbers such that they add up to a specific target number.The function tw...
分类:其他好文   时间:2015-05-11 01:15:36    阅读次数:177
一起刷LeetCode1-Two Sum
感觉有必要重新刷刷题了,为以后找工作做做准备,选择LeetCode+topcoder上的Data Science Tutorials,争取每天晚上10:00开始刷一道,复习一下相关知识点。------------------------------------------------------.....
分类:其他好文   时间:2015-05-08 06:56:53    阅读次数:115
Leetcode1 Two Sum
描述 Given an array of integers, find two numbers such that they add up to a specific target number. The function twoSum should return indices of the tw...
分类:其他好文   时间:2015-04-08 21:19:04    阅读次数:112
LeetCode1 Two Sum **
题目: Given an array of integers, find two numbers such that they add up to a specific target number. The function twoSum should return indices of the two numbers such that they add up to the targ...
分类:其他好文   时间:2015-04-03 21:08:43    阅读次数:158
LeetCode1-Two Sum
题目:Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the two...
分类:其他好文   时间:2015-01-23 21:18:04    阅读次数:239
【目录】Leetcode
不知不觉居然已经写了200多篇随笔了,现在查找的时候经常要翻好久,很不方便。故给自己做个目录~Leetcode1、动态规划Palindrome Partitioning II(hard) ☆Distinct Subsequences(hard)Edit Distance (hard)Interlea...
分类:其他好文   时间:2015-01-02 14:32:34    阅读次数:183
53条   上一页 1 ... 3 4 5 6 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!