开始进行的第一周。 以下是各项的情况: Algorithm 这周有点赶项目,偷懒做了一个最基本的题目。 链接:[LeetCode-01]-Two Sum Java: JS: Review 分享 写伪代码来帮助理清思路 https://www.geeksforgeeks.org/how-to-writ ...
分类:
其他好文 时间:
2019-06-16 09:38:55
阅读次数:
117
亚麻社招OA: 90mins两道coding + 15mins复杂度分析 + 5mins调查表 [亚麻社招OA]Closest X destinations PriorityQueue [亚麻社招OA]Remove Obstacle BFS [亚麻社招OA]Two Sum Closest(无人机飞行... ...
分类:
其他好文 时间:
2019-06-15 09:34:44
阅读次数:
90
Input: List of foregroundApp List of backgroundApp int capacity Example: Input : capacity = 52 foregroundApp = [ [1, 4], [2, 43], [3, 54], [4, 67] ] ( ...
分类:
移动开发 时间:
2019-06-15 09:33:15
阅读次数:
186
ARTS 具体要求: 1.每周至少做一个 leetcode 的算法题2.阅读并点评至少一篇英文技术文章3.学习至少一个技术技巧4.分享一篇有观点和思考的技术文章 1、Algorithm Two Sum Given an array of integers, return indices of the ...
分类:
其他好文 时间:
2019-06-10 18:47:40
阅读次数:
134
class Solution {public: vector<int> twoSum(vector<int>& nums, int target) { int n=nums.size(); int i,j; vector<int> res(2); for (i=0;i<n-1;i++){ for ( ...
分类:
其他好文 时间:
2019-06-05 23:32:22
阅读次数:
117
总是莫名其妙被双指针的题卡到,其实双指针的题应该非常简单。 看到是array的题往two pointers上想就差不多了,然后它的核心不是说指针 i 和 j 指向的两个数构成最优解,而是说考虑 i 和 j 指向的其中一个数对答案的贡献,每次利用完throw away就行了。(同理two sum的双指 ...
分类:
其他好文 时间:
2019-06-05 09:49:40
阅读次数:
64
题目描述 "https://leetcode.com/problems/two sum/" 解决方法 一: 复制列表内容 L = [1,2,3] LL = L.copy() 或LL = L[:] 二: class Solution(object): def twoSum(self, nums, ta ...
分类:
其他好文 时间:
2019-06-04 22:28:25
阅读次数:
129
1. Two Sum 两数之和 Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each inp ...
分类:
编程语言 时间:
2019-05-30 01:30:50
阅读次数:
127
Question Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input woul ...
分类:
其他好文 时间:
2019-05-23 19:38:44
阅读次数:
114
Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have ex ...
分类:
其他好文 时间:
2019-05-18 23:44:24
阅读次数:
159