上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 17 下一页
摘要: Write a SQL query to get the second highest salary from the Employee table. For example, given the above Employee table, the second highest salary is  阅读全文
posted @ 2017-03-02 23:44 wilderness 阅读(167) 评论(0) 推荐(0) 编辑
摘要: Table: Person Table: Address Write a SQL query for a report that provides the following information for each person in the Person table, regardless if 阅读全文
posted @ 2017-03-02 23:43 wilderness 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 原来这就是闭包啊。。。 还是上次面试,被问只不知掉js里面的闭包 闭包,没听过啊。。。什么是闭包 回来查了下,原来这货叫闭包啊。。。。。。 —————————————————————————————————— 闭包(closure)是函数式编程的重要的语法结构。闭包也是一种组织代码的结构,它同样提高 阅读全文
posted @ 2017-02-23 11:28 wilderness 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 前两天一个面试被问到python中单例模式有几种实现方式,只答出了可以用元类实现。。。然后就想不起来了。 之后翻书,原来这些之前都见过的啊。。。。 1.手动实现真正创建实例的方法__new__()来实现 2,利用元类实现: 3,利用装饰器实现 4.共享属性 5.import实现 参考资料:1.改善p 阅读全文
posted @ 2017-02-23 10:34 wilderness 阅读(407) 评论(0) 推荐(0) 编辑
摘要: 195. Tenth Line 输出file.txt中的第十行 答案: 193. Valid Phone Numbers 找出file.txt中符合(xxx) xxx-xxxx or xxx-xxx-xxxx格式的电话号码 答案: 阅读全文
posted @ 2017-02-19 22:58 wilderness 阅读(181) 评论(0) 推荐(0) 编辑
摘要: Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in or 阅读全文
posted @ 2017-01-17 14:08 wilderness 阅读(121) 评论(0) 推荐(0) 编辑
摘要: Given an array of integers sorted in ascending order, find the starting and ending position of a given target value. Your algorithm's runtime complexi 阅读全文
posted @ 2017-01-17 13:44 wilderness 阅读(143) 评论(0) 推荐(0) 编辑
摘要: Suppose an array sorted in ascending order is rotated at some pivot unknown to you beforehand. (i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2). You a 阅读全文
posted @ 2017-01-17 10:41 wilderness 阅读(158) 评论(0) 推荐(0) 编辑
摘要: Given a string containing just the characters '(' and ')', find the length of the longest valid (well-formed) parentheses substring. For "(()", the lo 阅读全文
posted @ 2017-01-16 17:45 wilderness 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 合并k个已合并链表。 思路:先把链表两两合并,直到合并至只有一个链表 阅读全文
posted @ 2017-01-15 21:16 wilderness 阅读(134) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 17 下一页