#
coding-interview
Here are 72 public repositories matching this topic...
Data Structures and Algorithms explained and implemented in JavaScript
-
Updated
Feb 3, 2020 - JavaScript
JavaScript interview Questions
-
Updated
Feb 3, 2020
Most comprehensive list 📋 of tech interview questions 📘 of companies scraped from Geeksforgeeks, CareerCup and Glassdoor.
-
Updated
Feb 3, 2020 - Java
Programming exercises, code katas and puzzles for your job interview training - or just for fun.
-
Updated
Feb 2, 2020 - Python
-
Updated
Jan 30, 2020 - JavaScript
-
Updated
Feb 2, 2020 - Python
구름EDU 알고리즘 문제해결기법 입문 과목의 답안 코드집입니다.
-
Updated
Jan 13, 2020 - Java
Solutions to all problems of Leetcode online judge written in C++ and Java
-
Updated
Sep 2, 2019 - C++
Danh sách những câu hỏi trong phỏng vấn Javascript 📝
-
Updated
Dec 15, 2019
Coding interview preparation ✨ Includes algorithms, data structures & big-🙃 complexities 🚀
-
Updated
Jan 29, 2020 - Python
Solutions of some problems in competitive programming
-
Updated
Jan 29, 2020 - C++
Scrape Algorithm Questions from leetcode and generate html and epub file
-
Updated
Jan 12, 2020 - Python
-
Updated
Jan 23, 2020 - Java
A variety of coding challenges in Python and JS, just for fun.
-
Updated
Nov 18, 2019 - Python
This repository contains codes that I have solved either for Jobs or for competitive codings.
-
Updated
Jan 4, 2020 - C++
Codility challenges and solutions
-
Updated
Feb 27, 2019 - Python
Asymptotic analysis applied on basic data structures in Python
-
Updated
Jun 6, 2018
Leetcode problems I've been through, with detail problem solving strategy
-
Updated
Sep 2, 2018 - Python
This project is to provide an easy-to-understand overview of Java Collections framework which is actively used by developers, interviewers, interviewees, and so on. I am not aiming to describe all classes which implement Java Collection Interface, but instead, tried to explain how representative classes work internally and how those mechanisms affect the time complexity.
-
Updated
Sep 30, 2019 - Java
Shareworthy Interview Prep Resources w/ clickable links (HackerRank Interview Prep Kit, Cracking the Coding Interview eBook, Example of Coding/Engineering Interview Video, & more!)
-
Updated
Nov 6, 2019
Answers for CodingInterview. 记录平时遇到的编程题并给出解答。
-
Updated
Jul 5, 2018 - Objective-C
-
Updated
Feb 23, 2019 - HTML
This repository contains best solution for many easy and medium leetcode data structure problems
-
Updated
Dec 28, 2019 - Java
Solutions chapter by chapter of the book Cracking the Coding Interview
-
Updated
Aug 1, 2018 - Java
Improve this page
Add a description, image, and links to the coding-interview topic page so that developers can more easily learn about it.
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."
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)
{