[面经] [实习] Next Capital 实习 Summer 2017 OA

2017-02-24
阅读 2 分钟
4k
形式 - OA平台 - HackerRank时间 - 两个小时题目数量 - 4题难度 2题Easy - 1题Medium(hard?) - 1题 HTML(应该挺简单的但是我不会 html 现查的。。。。)

Leetcode 78/LintCode 17 - subsets

2017-02-22
阅读 2 分钟
4.4k
Given a set of distinct integers, nums, return all possible subsets.For example, If nums = [1,2,3], a solution is:[ [], [1], [1,2], [1,2,3], [1,3], [2], [2,3], [3] ] 要求: The solution set must not contain duplicate subsets.可能要求:(Leetcode 没有要求但是面试可能) Elements in a subset must be in...