interview-questions
Here are 959 public repositories matching this topic...
So at the time of this writing, this project counts 31.661 stars which indicate how popular it is -- hanking in 60th in number of stars, just 2 positions behind Angular.
However, the web evolves fast and while most questions here remain relevant, I guess we're in a good time for an update -- there are lots of improvement
It is known that Alibaba is a great international company.Maybe @kdn251 can open a catalog:interviews/company/Alibaba.
For example,a 2019 Alibaba interview question.
//Question: you need to caculate sqrt(2) to 10 decimal places accurately without math library.
`double sqrt2( )
{
double low = 1.4, high = 1.5;
double mid = (low + high) / 2;
while (high – low > 0.0000000001)
{
In the Best Practice Questions section under Week 5 – Dynamic Programming, Combination Sum linked to LeetCode Combination Sum IV. Is this intended? All other questions have the correct numbering (e.g. Word Search II).
:octocat: A curated awesome list of lists of interview questions. Feel free to contribute! :mortar_board:
-
Updated
Jan 20, 2020
The Patterns of Scalable, Reliable, and Performant Large-Scale Systems
-
Updated
Jan 20, 2020
When a property is accessed on an object and if the property is not found on that object, the JavaScript engine should looks at the object's __proto__(different browser has their own implement) .Or, looks at the prototype of its constructor.
https://mybinder.org/ Should I make a binder ? :) Or if there is a binder link, it's well hidden.
there is data_structures/src/list/singly_linked_list, but there is also a code for same problem in data_structures/linked_list/
One of them ought to be removed.
System design interview for IT companies
-
Updated
Jan 20, 2020
前端面试每日 3+1,以面试题来驱动学习,提倡每日学习与思考,每天进步一点!每天早上5点纯手工发布面试题(死磕自己,愉悦大家)
-
Updated
Jan 20, 2020 - JavaScript
📚 C/C++ 技术面试基础知识总结,包括语言、程序库、数据结构、算法、系统、网络、链接装载库等知识及面试经验、招聘、内推等信息。
-
Updated
Jan 20, 2020 - C++
Everything you need to prepare for your technical interview
-
Updated
Jan 20, 2020
The top Internet companies android interview questions and answers
-
Updated
Jan 20, 2020 - JavaScript
A curated collection of common interview questions to help you prepare for your next interview.
-
Updated
Jan 20, 2020 - JavaScript
A collection of Linux Sysadmin Test Questions and Answers. Test your knowledge and skills in different fields with these Q/A.
-
Updated
Jan 20, 2020
Cracking the Coding Interview 6th Ed. Solutions
-
Updated
Jan 20, 2020 - Java
Your Cheat Sheet For Android Interview - Android Interview Questions
-
Updated
Jan 19, 2020 - Java
List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are coming soon!!
-
Updated
Jan 20, 2020
:school_satchel: :rocket: :tada: A list of interview questions. This repository is everything you need to prepare for your technical interview.
-
Updated
Jan 19, 2020
前端开发面试题大收集,前端面试集锦 :heart: :gift_heart: :cupid:
-
Updated
Jan 20, 2020 - HTML
If we traverse through the tree from down, the child of root node will contain 12 and 4, so the summation of both is 16 but you got 20
algorithms playground for common questions
-
Updated
Jan 18, 2020 - Ruby
Implementation of Algorithms and Data Structures, Problems and Solutions
-
Updated
Jan 19, 2020 - Java
A mostly reasonable collection of technical software development interview questions solved in Javascript
-
Updated
Jan 20, 2020
During the NBA playoffs, we always arrange the rather strong team to play with the rather weak team, like make the rank 1 team play with the rank nth team, which is a good strategy to make the contest more interesting. Now, you're given n teams, you need to output their final contest matches in the form of a string.
The n teams are given in the form of positive integers from 1 to n, which repr
Improve this page
Add a description, image, and links to the interview-questions topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the interview-questions topic, visit your repo's landing page and select "manage topics."


A description is incomplete. It should mention:
These patterns are not competing, but complementing each other. To achieve availability, one needs both fail-over and replication.
right after
"There are two main patterns to support high availability: fail-over and replication. "