interview-questions
Here are 1,203 public repositories matching this topic...
-
Updated
Jul 2, 2020
- We have BFS and DFS images in both Breadth First Traversal and Depth First Traversal. We should have illustrations in the respective sections.
-
Updated
May 18, 2020 - HTML
Hey Yangshun,
Thanks for the great list of guides!
I found the explanation for Snake game bit difficult to follow and I came across this interesting and better explanantion here https://www.youtube.com/watch?v=AaGK-fj-BAM
-
Updated
May 19, 2020
Contributing.md doesn't doesn't appear to contain any actual guidlines, and the link only leads back to the same document: Java/CONTRIBUTING.md.
-
Updated
Jun 30, 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.
Definitely not a Python-related wtf, but nice to know anyways
>>> round(1.25, 1)
1.2
>>> round(1.35, 1)
1.4Explanation idea:
>>> round(1.45) + round(1.55) == 3
Truehttps://mybinder.org/ Should I make a binder ? :) Or if there is a binder link, it's well hidden.
-
Updated
Apr 19, 2020 - C++
This is a(n):
- New algorithm
- Update to an existing algorithm
- Error
- Proposal to the Repository
Details:
We can make a file may be READ.
-
Updated
Jul 1, 2020 - JavaScript
-
Updated
Jun 3, 2020
-
Updated
Dec 1, 2019
-
Updated
Mar 16, 2020 - JavaScript
-
Updated
May 20, 2020 - JavaScript
-
Updated
Jul 2, 2020 - C++
-
Updated
Jun 12, 2020 - JavaScript
-
Updated
Jan 22, 2020
-
Updated
Jun 17, 2020 - Java
Hi all,
I found that there is a better visualized article on activity launch modes with a more descriptive explanation.
https://inthecheesefactory.com/blog/understand-android-activity-launchmode/en
Is it possible to link to this article on the Activity -> What are "launch modes" ?
## Python/Regex fix
This is a reminder for me or a task if anyone wants :P
Basically, The last two questions aren't really regex's questions.
To do:
- Move said questions to correct place.
- Add new regex questions (Python related!)?
- Maybe add a new ## Regex section, as it is a valuable skill
I create leetcode directory. You can contribute solution for Leetcode algorithm by C language.
Good practice coding :)
Please put some comment for explanation. It helps other people understand your algorithm better
-
Updated
Sep 11, 2019 - HTML
-
Updated
Jun 21, 2020 - C++
Given a blacklist B containing unique integers from [0, N), write a function to return a uniform random integer from [0, N) which is NOT in B.
Optimize it such that it minimizes the call to system’s Math.random().
Note:
1 <= N <= 10000000000 <= B.length < min(100000, N)[0, N)does NOT include N. See [interval notation](https://en.wikipedia.org/wiki/Interval_\
-
Updated
Jun 7, 2020
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. "