A common interview question is to write a?function?that?converts a string?into?an?integer e.g. "123" => 123. This function is commonly called atoi bec ...
分类:
其他好文 时间:
2017-10-03 16:58:01
阅读次数:
202
Given an unsorted array of integers, find the number of longest increasing subsequence. Example 1: Input: [1,3,5,4,7] Output: 2 Explanation: The two l ...
分类:
其他好文 时间:
2017-09-27 21:48:07
阅读次数:
150
转自:https://github.com/taizilongxu/interview_python Python语言特性 1 Python的函数参数传递 2 Python中的元类(metaclass) 3 @staticmethod和@classmethod 4 类变量和实例变量 5 Python ...
分类:
编程语言 时间:
2017-09-11 16:29:17
阅读次数:
313
网络请求的接口如下所示,其实与POST请求基本相同只是将注解@POST还成了@PUT 至于需要修好的Content-Type网上查询资料可以添加注解@Headers(静态请求头) 其他请求的部分就正常写就行了。 ...
分类:
其他好文 时间:
2017-09-05 19:17:57
阅读次数:
323
Given a List of words, return the words that can be typed using letters of alphabet on only one row's of American keyboard like the image below. Examp ...
分类:
其他好文 时间:
2017-08-27 11:13:35
阅读次数:
202
题目 在一个二维数组中,每一行都依照从左到右递增的顺序排序,每一列都依照从上到下递增的顺序排序。请完毕一个函数,输入这种一个二维数组和一个整数。推断数组中是否含有该整数。 思路 [算法系列之三十三]杨氏矩阵 代码 /* * 日期:2015-07-19 * 作者:SJF0115 * 题目: 5.二维数 ...
分类:
编程语言 时间:
2017-08-20 18:19:46
阅读次数:
209
网址:https://www.nowcoder.com/ta/cracking-the-coding-interview?query=&asc=true&order=&page=1 1.1 ...
分类:
其他好文 时间:
2017-08-18 11:18:07
阅读次数:
478
参考网页:15 Essential Python Interview Questions 1. 什么是Python? 可以在回答中与其他技术作对比(鼓励这么做);如果应聘的是一个Python开发岗位,就应知道这是门什么样的语言以及它为什么这么酷,以及它哪里不好。 参考答案: Python是一种解释型 ...
分类:
编程语言 时间:
2017-08-13 20:47:55
阅读次数:
208
Solve a given equation and return the value of x in the form of string "x=#value". The equation contains only '+', '-' operation, the variable x and i ...
分类:
其他好文 时间:
2017-08-12 17:07:41
阅读次数:
129
References [1] http://java-questions.com/Serialization-interview-questions.html [2] http://javarevisited.blogspot.co.uk/2011/04/top-10-java-serializat ...
分类:
编程语言 时间:
2017-08-11 23:03:07
阅读次数:
219