Essential Go Interview Questions
Published at August 16, 2019 · 1 min read
Golang 基础的面试题,答案结合问题详细的解释 Golang 的技巧 Essential Go Interview Questions...
Essential Go Interview Questions
Published at August 16, 2019 · 1 min read
Golang 基础的面试题,答案结合问题详细的解释 Golang 的技巧 Essential Go Interview Questions...
Essential Linux Interview Questions
Published at April 17, 2019 · 1 min read
Golang 常见面试问题 Essential Linux Interview Questions...
Essential Web Interview Questions
Published at April 16, 2019 · 1 min read
web 开发的一些基础面试题 Essential Web Interview Questions...
Essential Python Interview Questions
Published at March 30, 2019 · 1 min read
由 Toptal 出的 python interview 问题,其中几个关键的分别为,1. 函数默认值的传值问题,默认值只在函数定义时执行过一次。2. lambda 闭包函数中的 late binding 问题,循环中只取最新的一个值,可以通过 generator,将 [] 换成 () ,解决。3. Python 继承类中的赋值问题,类的属性是以 dict 的形式保存,当子类中的属性不存在时,则向父类递归查询,直到查到或抛出 AttributeError 为止。当更改父类的属性时,若子类属性未做变更,查询子类相关属性时返回的未父类的属性值。4. [[]] * N 的操作并未生成包含 N 个 Item 的list,而是 N 个对应的引用,所以当改变某个 item 中的值时,改变的是其中所有 item 的值。 Essential Python Interview Questions...
How to Stand Out in a Python Coding Interview – Real Python
Published at March 30, 2019 · 1 min read
python interview 中的几个技巧,计算要多用 generator 以节省内存及提高计算效率,以及多用 enumerate 代替 range 获取 item 的同时得到 index How to Stand Out in a Python Coding Interview – Real Python...
Top 40 Python Interview Questions & Answers
Published at March 30, 2019 · 1 min read
python常见面试题及答案 Top 40 Python Interview Questions & Answers...
Vue.js Interview Questions in 2019 - Online Interview Questions
Published at March 20, 2019 · 1 min read
vuejs 面试相关的几个常见问题,数据的双向和单向绑定,官方指令等。 Vue.js Interview Questions in 2019 - Online Interview Questions...
Top 50 Python Interview Questions & Answers For 2019 | Edureka
Published at February 27, 2019 · 1 min read
很基本的 python 基础知识,其中对于 first-class objects 的定义是第一次听说,值得随时翻翻复习下基础 Top 50 Python Interview Questions & Answers For 2019 | Edureka...