Skip to content
#

coding-interview

Here are 72 public repositories matching this topic...

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

Improve this page

Add a description, image, and links to the coding-interview 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 coding-interview topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.