码迷,mamicode.com
首页 >  
搜索关键字:interview    ( 649个结果
1. Two Sum
Problem statement: 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 ...
分类:其他好文   时间:2017-05-20 11:10:31    阅读次数:232
Longest Common Subsequence
Problem statement: Given two strings, find the longest common subsequence (LCS). Your code should return the length of LCS. Have you met this question ...
分类:其他好文   时间:2017-05-15 23:52:55    阅读次数:381
在简历中使用STAR法则
一.什么是STAR法则? The STAR (Situation, Task, Action, Result) format is a job interview technique used by interviewers to gather all the relevant informatio ...
分类:其他好文   时间:2017-05-08 23:28:55    阅读次数:284
《饿了么大前端 Node.js 进阶教程》—Javascript 基础问题—引用传递
《饿了么大前端 Node.js 进阶教程》地址:https://github.com/ElemeFE/node-interview 1.如何编写一个 json 对象的拷贝函数 function clone(obj){ var result; if (Array.isArray(obj)) { res ...
分类:编程语言   时间:2017-05-02 19:42:08    阅读次数:379
《饿了么大前端 Node.js 进阶教程》—Javascript 基础问题—作用域
《饿了么大前端 Node.js 进阶教程》地址:https://github.com/ElemeFE/node-interview 作用域从某种意义上来说是个难点,它需要你真真正正的了解JS的分词、词法分析,语法分析,代码生成,LHS查询,RHS查询等深层的东西。 如果不知道可以读一下《你不知道的J ...
分类:编程语言   时间:2017-05-02 19:41:33    阅读次数:242
《饿了么大前端 Node.js 进阶教程》—Javascript 基础问题—类型判断
lodash的类型判断源码 《饿了么大前端 Node.js 进阶教程》地址:https://github.com/ElemeFE/node-interview (1)null 类型 function isNull(value) { return value null; } (2)number类型 f ...
分类:编程语言   时间:2017-05-02 16:49:04    阅读次数:459
在O(1)时间复杂度删除链表节点
在O(1)时间复杂度删除链表节点 给定一个单链表中的一个等待被删除的节点(非表头或表尾)。请在在O(1)时间复杂度删除该链表节点。 样例 给定 1->2->3->4,和节点 3,删除 3 之后,链表应该变为 1->2->4。 标签 Cracking The Coding Interview 链表 / ...
分类:其他好文   时间:2017-05-02 14:04:27    阅读次数:195
Cheatsheet: 2017 03.01 ~ 03.31
Web New Year, New Blog Day 10 - Using JetBrains Rider with a .NET Core Console Application JavaScript Interview Day # 1: How to create a Class Using R... ...
分类:其他好文   时间:2017-04-04 20:50:23    阅读次数:241
JAVA多线程和并发基础面试问答(转载)
JAVA多线程和并发基础面试问答(转载) JAVA多线程和并发基础面试问答 原文链接:http://ifeve.com/java-multi-threading-concurrency-interview-questions-with-answers/ 多线程和并发问题是Java技术面试中面试官比较... ...
分类:编程语言   时间:2017-04-04 17:12:06    阅读次数:258
Spring||Interview
1.依赖注入(DI)(IOC) 对象本身不负责对象的创建和维护,将控制权转交给外部的容器实现,降低程序的耦合度,只提供java方法让容器决定依赖关系,依赖关系的对象通过JavaBean属性或者构造函数传递给需要的对象,使用<bean>元素去构造组件时,为id定义一个唯一的名称,通过调用属性的sett ...
分类:编程语言   时间:2017-03-24 13:29:46    阅读次数:235
649条   上一页 1 ... 27 28 29 30 31 ... 65 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!