Skip to content
#

interview-questions

Here are 959 public repositories matching this topic...

njacharya
njacharya commented Aug 16, 2019

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. "

Front-end-Developer-Interview-Questions
cezaraugusto
cezaraugusto commented Jan 16, 2018

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

1170300826
1170300826 commented Jul 5, 2019

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)
{

xiasongh
xiasongh commented Sep 24, 2019

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).

grandyang
grandyang commented May 30, 2019

 

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.

Curate this topic

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."

Learn more

You can’t perform that action at this time.