From 08425beacb0e92de37d59aee247c070b95864007 Mon Sep 17 00:00:00 2001 From: Yangshun Tay Date: Sat, 13 Jan 2018 11:49:14 -0800 Subject: [PATCH] Extract Front End to be standalone --- README.md | 1337 +++++++++++++++++++- algorithms/README.md | 578 --------- algorithms/array.md | 60 - algorithms/bit-manipulation.md | 7 - algorithms/dynamic-programming.md | 26 - algorithms/geometry.md | 7 - algorithms/graph.md | 10 - algorithms/hash-table.md | 7 - algorithms/heap.md | 5 - algorithms/interval.md | 28 - algorithms/linked-list.md | 12 - algorithms/math.md | 20 - algorithms/matrix.md | 18 - algorithms/oop.md | 8 - algorithms/permutation.md | 12 - algorithms/queue.md | 5 - algorithms/sorting-searching.md | 16 - algorithms/stack.md | 9 - algorithms/string.md | 58 - algorithms/topics.md | 89 -- algorithms/tree.md | 36 - design/README.md | 95 -- design/collaborative-editor.md | 108 -- design/news-feed.md | 164 --- design/search-engine.md | 6 - domain/async-loading/index.html | 61 - domain/databases.md | 8 - domain/networking.md | 6 - domain/pagination-sorting/data.js | 677 ---------- domain/pagination-sorting/index.html | 144 --- domain/security.md | 67 - domain/snake-game/snake-game.md | 77 -- domain/software-engineering.md | 22 - domain/tic-tac-toe/index.html | 178 --- front-end/interview-questions.md | 1305 ------------------- interviewers/basics.md | 20 - non-technical/behavioral.md | 165 --- non-technical/cover-letter.md | 8 - non-technical/interview-formats.md | 133 -- non-technical/negotiation.md | 86 -- non-technical/psychological-tricks.md | 27 - non-technical/questions-to-ask.md | 110 -- non-technical/resume.md | 147 --- non-technical/self-introduction.md | 27 - preparing/README.md | 121 -- preparing/cheatsheet.md | 103 -- {front-end => topics}/accessibility.md | 0 {front-end => topics}/browser.md | 0 {front-end => topics}/caching.md | 0 {front-end => topics}/css.md | 0 {front-end => topics}/design.md | 0 {front-end => topics}/dom.md | 0 {front-end => topics}/html.md | 0 {front-end => topics}/javascript.md | 0 {front-end => topics}/networking.md | 0 {front-end => topics}/performance.md | 0 {front-end => topics}/security.md | 0 {front-end => topics}/widgets.md | 0 utilities/javascript/binToInt.js | 15 - utilities/javascript/binarySearch.js | 26 - utilities/javascript/deepEqual.js | 37 - utilities/javascript/graphTopoSort.js | 35 - utilities/javascript/intToBin.js | 19 - utilities/javascript/intervalsIntersect.js | 17 - utilities/javascript/intervalsMerge.js | 16 - utilities/javascript/isSubsequence.js | 19 - utilities/javascript/matrixClone.js | 18 - utilities/javascript/matrixTranspose.js | 11 - utilities/javascript/matrixTraverse.js | 28 - utilities/javascript/mergeSort.js | 60 - utilities/javascript/treeEqual.js | 11 - utilities/javascript/treeMirror.js | 10 - utilities/python/binary_search.py | 69 - utilities/python/char_prime_map.py | 19 - utilities/python/graph_dfs.py | 24 - utilities/python/graph_topo_sort.py | 21 - utilities/python/heap.py | 84 -- utilities/python/is_subsequence.py | 13 - utilities/python/linked_list.py | 109 -- utilities/python/quick_select.py | 60 - utilities/python/rabin_karp_hash.py | 41 - utilities/python/tree_equal.py | 8 - utilities/python/tree_mirror.py | 6 - utilities/python/tree_traversal.py | 62 - utilities/python/trie.py | 80 -- utilities/python/union_find.py | 50 - 86 files changed, 1296 insertions(+), 5885 deletions(-) delete mode 100644 algorithms/README.md delete mode 100644 algorithms/array.md delete mode 100644 algorithms/bit-manipulation.md delete mode 100644 algorithms/dynamic-programming.md delete mode 100644 algorithms/geometry.md delete mode 100644 algorithms/graph.md delete mode 100644 algorithms/hash-table.md delete mode 100644 algorithms/heap.md delete mode 100644 algorithms/interval.md delete mode 100644 algorithms/linked-list.md delete mode 100644 algorithms/math.md delete mode 100644 algorithms/matrix.md delete mode 100644 algorithms/oop.md delete mode 100644 algorithms/permutation.md delete mode 100644 algorithms/queue.md delete mode 100644 algorithms/sorting-searching.md delete mode 100644 algorithms/stack.md delete mode 100644 algorithms/string.md delete mode 100644 algorithms/topics.md delete mode 100644 algorithms/tree.md delete mode 100644 design/README.md delete mode 100644 design/collaborative-editor.md delete mode 100644 design/news-feed.md delete mode 100644 design/search-engine.md delete mode 100644 domain/async-loading/index.html delete mode 100644 domain/databases.md delete mode 100644 domain/networking.md delete mode 100644 domain/pagination-sorting/data.js delete mode 100644 domain/pagination-sorting/index.html delete mode 100644 domain/security.md delete mode 100644 domain/snake-game/snake-game.md delete mode 100644 domain/software-engineering.md delete mode 100644 domain/tic-tac-toe/index.html delete mode 100644 front-end/interview-questions.md delete mode 100644 interviewers/basics.md delete mode 100644 non-technical/behavioral.md delete mode 100644 non-technical/cover-letter.md delete mode 100644 non-technical/interview-formats.md delete mode 100644 non-technical/negotiation.md delete mode 100644 non-technical/psychological-tricks.md delete mode 100644 non-technical/questions-to-ask.md delete mode 100644 non-technical/resume.md delete mode 100644 non-technical/self-introduction.md delete mode 100644 preparing/README.md delete mode 100644 preparing/cheatsheet.md rename {front-end => topics}/accessibility.md (100%) rename {front-end => topics}/browser.md (100%) rename {front-end => topics}/caching.md (100%) rename {front-end => topics}/css.md (100%) rename {front-end => topics}/design.md (100%) rename {front-end => topics}/dom.md (100%) rename {front-end => topics}/html.md (100%) rename {front-end => topics}/javascript.md (100%) rename {front-end => topics}/networking.md (100%) rename {front-end => topics}/performance.md (100%) rename {front-end => topics}/security.md (100%) rename {front-end => topics}/widgets.md (100%) delete mode 100644 utilities/javascript/binToInt.js delete mode 100644 utilities/javascript/binarySearch.js delete mode 100644 utilities/javascript/deepEqual.js delete mode 100644 utilities/javascript/graphTopoSort.js delete mode 100644 utilities/javascript/intToBin.js delete mode 100644 utilities/javascript/intervalsIntersect.js delete mode 100644 utilities/javascript/intervalsMerge.js delete mode 100644 utilities/javascript/isSubsequence.js delete mode 100644 utilities/javascript/matrixClone.js delete mode 100644 utilities/javascript/matrixTranspose.js delete mode 100644 utilities/javascript/matrixTraverse.js delete mode 100644 utilities/javascript/mergeSort.js delete mode 100644 utilities/javascript/treeEqual.js delete mode 100644 utilities/javascript/treeMirror.js delete mode 100644 utilities/python/binary_search.py delete mode 100644 utilities/python/char_prime_map.py delete mode 100644 utilities/python/graph_dfs.py delete mode 100644 utilities/python/graph_topo_sort.py delete mode 100644 utilities/python/heap.py delete mode 100644 utilities/python/is_subsequence.py delete mode 100644 utilities/python/linked_list.py delete mode 100644 utilities/python/quick_select.py delete mode 100644 utilities/python/rabin_karp_hash.py delete mode 100644 utilities/python/tree_equal.py delete mode 100644 utilities/python/tree_mirror.py delete mode 100644 utilities/python/tree_traversal.py delete mode 100644 utilities/python/trie.py delete mode 100644 utilities/python/union_find.py diff --git a/README.md b/README.md index 2c6f92c85..e5360c099 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -

Tech Interview Handbook

+

Front End Interview Handbook

@@ -11,52 +11,1312 @@

-## What is this? +# Front-end Job Interview Questions -Carefully curated content to help you ace your next technical interview, with a focus on algorithms and the front end domain. System design questions are in-progress. Besides the usual algorithm questions, other **awesome** stuff includes: +Unlike typical software engineer job interviews, front-end job interviews have less emphasis on algorithms and have more questions on intricate knowledge and expertise about the domain — HTML, CSS, JavaScript, just to name a few areas. -- [How to prepare](preparing) for coding interviews -- [Interview Cheatsheet](preparing/cheatsheet.md) - Straight-to-the-point Do's and Don'ts 🆕 -- [Algorithm tips and the best practice questions](algorithms) categorized by topic -- ["Front-end Job Interview Questions" answers](front-end/interview-questions.md) -- [Interview formats](non-technical/interview-formats.md) of the top tech companies -- [Behavioral questions](non-technical/behavioral.md) categorized by companies -- [Good questions to ask your interviewers](non-technical/questions-to-ask.md) at the end of the interviews -- [Helpful resume tips](non-technical/resume.md) to get your resume noticed and the Do's and Don'ts +While there are some existing resources to help front end developers in preparing for interviews, they aren't as abundant as materials for a software engineer interview. Among the existing resources, probably the most helpful question bank would be [Front-end Job Interview Questions](https://github.com/h5bp/Front-end-Developer-Interview-Questions). Unfortunately, I couldn't find many complete and satisfactory answers for these questions online, hence here is my attempt at answering them. Being an open source repository, the project can live on with the support of the community as the state of web evolves. -This handbook is pretty new and help from you in contributing content would be very much appreciated! +## Table of Contents -## Why do I want this? +1. [HTML Questions](#html-questions) +1. [CSS Questions](#css-questions) +1. [JS Questions](#js-questions) -This repository has *practical* content that covers all phases of a technical interview, from applying for a job to passing the interviews to offer negotiation. Technically competent candidates might still find the non-technical content helpful as well. +## HTML Questions -## Who is this for? +Answers to [Front-end Job Interview Questions - HTML Questions](https://github.com/h5bp/Front-end-Developer-Interview-Questions#html-questions). Pull requests for suggestions and corrections are welcome! -Anybody who wants to land a job at a tech company but is new to technical interviews, seasoned engineers who have not been on the other side of the interviewing table in a while and want to get back into the game, or anyone who wants to be better at technical interviewing. +### What does a `doctype` do? -## How is this repository different? +`doctype` is an abbreviation for document type. It is a declaration used in HTML5 to distinguish between a standards-compliant parsing mode and a quirks parsing mode. Hence its presence tells the browser to parse and render the webpage in standards mode. -There are so many awesome books like [Cracking the Coding Interview](http://www.crackingthecodinginterview.com/) and interview-related repositories out there on GitHub, what makes this repository different? The difference is that many existing interview repositories contain mainly links to external resources whereas this repository contains top quality curated content directly for your consumption. +Moral of the story - just add `` at the start of your page. -Also, existing resources focus mainly on algorithm questions and lack coverage for more domain-specific and non-technical questions. This handbook aims to cover content beyond the typical algorithmic coding questions. 😎 +###### References -## Contents +* https://stackoverflow.com/questions/7695044/what-does-doctype-html-do +* https://www.w3.org/QA/Tips/Doctype -- **[Preparing for a Coding Interview](preparing)** - - [Interview cheatsheet](preparing/cheatsheet.md) - Straight-to-the-point Do's and Don'ts -- **[Algorithm Questions](algorithms)** - Questions categorized by topics -- **[Design Questions](design)** -- **[Front-end Study Notes](front-end)** - Summarized notes on the various aspects of front-end - - [Front-end Job Interview Questions and Answers](front-end/interview-questions.md) 🔥⭐ -- **[Non-Technical Tips](non-technical)** - Random non-technical tips that cover behavioral and psychological aspects, interview formats and "Do you have any questions for me?" - - [Resume Tips](non-technical/resume.md) - - [Behavioral Questions](non-technical/behavioral.md) - - [Interview Formats](non-technical/interview-formats.md) - - [Psychological Tricks](non-technical/psychological-tricks.md) - - [Questions to Ask](non-technical/questions-to-ask.md) - - [Negotiation Tips](non-technical/negotiation.md) -- **[Utilities](utilities)** - Snippets of algorithms/code that will help in coding questions - - **UPDATE** - Check out [Lago](https://github.com/yangshun/lago), which is a Data Structures and Algorithms library that contains more high-quality implementations with 100% test coverage. +### What's the difference between full standards mode, almost standards mode and quirks mode? + +* **Quirks mode** - Layout emulates non-standard behavior in Netscape Navigator 4 and Internet Explorer 5. This is essential in order to support websites that were built before the widespread adoption of web standards. The list of quirks can be found [here](https://developer.mozilla.org/en-US/docs/Mozilla/Mozilla_quirks_mode_behavior). +* **Full standards mode** - The layout behavior is the one described by the HTML and CSS specifications. +* **Almost standards mode** - There are only a very small number of quirks implemented. Differences can be found [here](https://developer.mozilla.org/en-US/docs/Gecko's_Almost_Standards_Mode). + +###### References + +* https://developer.mozilla.org/en-US/docs/Quirks_Mode_and_Standards_Mode + +### What's the difference between HTML and XHTML? + +XHTML belongs to the family of XML markups languages and is different from HTML. Some of differences are as follows: + +* XHTML documents have to be well-formed, unlike HTML, which is more forgiving. +* XHTML is case-sensitive for element and attribute names, while HTML is not. +* Raw `<` and `&` characters are not allowed except inside of `CDATA` Sections (``). JavaScript typically contains characters which can not exist in XHTML outside of CDATA Sections, such as the `<` operator. Hence it is tricky to use inline `styles` or `script` tags in XHTML and should be avoided. +* A fatal parse error in XML (such as an incorrect tag structure) causes document processing to be aborted. + +Full list of differences can be found on [Wikipedia](https://en.wikipedia.org/wiki/XHTML#Relationship_to_HTML). + +###### References + +* https://developer.mozilla.org/en-US/docs/Archive/Web/Properly_Using_CSS_and_JavaScript_in_XHTML_Documents_ +* https://en.wikipedia.org/wiki/XHTML + +### Are there any problems with serving pages as `application/xhtml+xml`? + +Basically the problems lie in the differences between parsing HTML and XML as mentioned above. + +* XHTML, or rather, XML syntax is less forgiving and if your page isn't fully XML-compliant, there will be parsing errors and users get unreadable content. +* Serving your pages as `application/xhtml+xml` will cause Internet Explorer 8 to show a download dialog box for an unknown format instead of displaying your page, as the first version of Internet Explorer with support for XHTML is Internet Explorer 9. + +###### References + +* https://developer.mozilla.org/en-US/docs/Quirks_Mode_and_Standards_Mode#XHTML + +### How do you serve a page with content in multiple languages? + +The question is a little vague, I will assume that it is asking about the most common case, which is how to serve a page with content available in multiple languages, but the content within the page should be displayed only in one consistent language. + +When an HTTP request is made to a server, the requesting user agent usually sends information about language preferences, such as in the `Accept-Language` header. The server can then use this information to return a version of the document in the appropriate language if such an alternative is available. The returned HTML document should also declare the `lang` attribute in the `` tag, such as `...`. + +In the back end, the HTML markup will contain `i18n` placeholders and content for the specific language stored in YML or JSON formats. The server then dynamically generates the HTML page with content in that particular language, usually with the help of a back end framework. + +###### References + +* https://www.w3.org/International/getting-started/language + +### What kind of things must you be wary of when designing or developing for multilingual sites? + +* Use `lang` attribute in your HTML. +* Directing users to their native language - Allow a user to change his country/language easily without hassle. +* Text in images is not a scalable approach - Placing text in an image is still a popular way to get good-looking, non-system fonts to display on any computer. However to translate image text, each string of text will need to have it's a separate image created for each language. Anything more than a handful of replacements like this can quickly get out of control. +* Restrictive words / sentence length - Some content can be longer when written in another language. Be wary of layout or overflow issues in the design. It's best to avoid designing where the amount of text would make or break a design. Character counts come into play with things like headlines, labels, and buttons. They are less of an issue with free flowing text such as body text or comments. +* Be mindful of how colors are perceived - Colors are perceived differently across languages and cultures. The design should use color appropriately. +* Formatting dates and currencies - Calendar dates are sometimes presented in different ways. Eg. "May 31, 2012" in the U.S. vs. "31 May 2012" in parts of Europe. +* Do not concatenate translated strings - Do not do anything like `"The date today is " + date`. It will break in languages with different word order. Using template parameters instead. +* Language reading direction - In English, we read from left-to-right, top-to-bottom, in traditional Japanese, text is read up-to-down, right-to-left. + +###### References + +* https://www.quora.com/What-kind-of-things-one-should-be-wary-of-when-designing-or-developing-for-multilingual-sites + +### What are `data-` attributes good for? + +Before JavaScript frameworks became popular, front end developers used `data-` attributes to store extra data within the DOM itself, without other hacks such as non-standard attributes, extra properties on the DOM. It is intended to store custom data private to the page or application, for which there are no more appropriate attributes or elements. + +These days, using `data-` attributes is not encouraged. One reason is that users can modify the data attribute easily by using inspect element in the browser. The data model is better stored within JavaScript itself and stay updated with the DOM via data binding possibly through a library or a framework. + +###### References + +* http://html5doctor.com/html5-custom-data-attributes/ +* https://www.w3.org/TR/html5/dom.html#embedding-custom-non-visible-data-with-the-data-*-attributes + +### Consider HTML5 as an open web platform. What are the building blocks of HTML5? + +* Semantics - Allowing you to describe more precisely what your content is. +* Connectivity - Allowing you to communicate with the server in new and innovative ways. +* Offline and storage - Allowing webpages to store data on the client-side locally and operate offline more efficiently. +* Multimedia - Making video and audio first-class citizens in the Open Web. +* 2D/3D graphics and effects - Allowing a much more diverse range of presentation options. +* Performance and integration - Providing greater speed optimization and better usage of computer hardware. +* Device access - Allowing for the usage of various input and output devices. +* Styling - Letting authors write more sophisticated themes. + +###### References + +* https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/HTML5 + +### Describe the difference between a `cookie`, `sessionStorage` and `localStorage`. + +All the above mentioned technologies are key-value storage mechanisms on the client side. They are only able to store values as strings. + +| | `cookie` | `localStorage` | `sessionStorage` | +| -------------------------------------- | -------------------------------------------------------- | -------------- | ---------------- | +| Initiator | Client or server. Server can use `Set-Cookie` header | Client | Client | +| Expiry | Manually set | Forever | On tab close | +| Persistent across browser sessions | Depends on whether expiration is set | Yes | No | +| Have domain associated | Yes | No | No | +| Sent to server with every HTTP request | Cookies are automatically being sent via `Cookie` header | No | No | +| Capacity (per domain) | 4kb | 5MB | 5MB | +| Accessibility | Any window | Any window | Same tab | + +###### References + +* https://developer.mozilla.org/en-US/docs/Web/HTTP/Cookies +* http://tutorial.techaltum.com/local-and-session-storage.html + +### Describe the difference between ` ` and JS ` + + +``` + +```js +// File loaded from https://example.com?callback=printData +printData({ name: 'Yang Shun' }); +``` + +The client has to have the `printData` function in its global scope and the function will be executed by the client when the response from the cross-origin domain is received. + +JSONP can be unsafe and has some security implications. As JSONP is really JavaScript, it can do everything else JavaScript can do, so you need to trust the provider of the JSONP data. + +These days, [CORS](http://en.wikipedia.org/wiki/Cross-origin_resource_sharing) is the recommended approach and JSONP is seen as a hack. + +###### References + +* https://stackoverflow.com/a/2067584/1751946 + +### Have you ever used JavaScript templating? If so, what libraries have you used? + +Yes. Handlebars, Underscore, Lodash, AngularJS and JSX. I disliked templating in AngularJS because it made heavy use of strings in the directives and typos would go uncaught. JSX is my new favourite as it is closer to JavaScript and there is barely any syntax to learn. Nowadays, you can even use ES2015 template string literals as a quick way for creating templates without relying on third-party code. + +```js +const template = `
My name is: ${name}
`; +``` + +However, do be aware of a potential XSS in the above approach as the contents are not escaped for you, unlike in templating libraries. + +### Explain "hoisting". + +Hoisting is a term used to explain the behavior of variable declarations in your code. Variables declared or initialized with the `var` keyword will have their declaration "hoisted" up to the top of the current scope. However, only the declaration is hoisted, the assignment (if there is one), will stay where it is. Let's explain with a few examples. + +```js +// var declarations are hoisted. +console.log(foo); // undefined +var foo = 1; +console.log(foo); // 1 + +// let/const declarations are NOT hoisted. +console.log(bar); // ReferenceError: bar is not defined +let bar = 2; +console.log(bar); // 2 +``` + +Function declarations have the body hoisted while the function expressions (written in the form of variable declarations) only has the variable declaration hoisted. + +```js +// Function Declaration +console.log(foo); // [Function: foo] +foo(); // 'FOOOOO' +function foo() { + console.log('FOOOOO'); +} +console.log(foo); // [Function: foo] + +// Function Expression +console.log(bar); // undefined +bar(); // Uncaught TypeError: bar is not a function +var bar = function() { + console.log('BARRRR'); +}; +console.log(bar); // [Function: bar] +``` + +### Describe event bubbling. + +When an event triggers on a DOM element, it will attempt to handle the event if there is a listener attached, then the event is bubbled up to its parent and the same thing happens. This bubbling occurs up the element's ancestors all the way to the `document`. Event bubbling is the mechanism behind event delegation. + +### What's the difference between an "attribute" and a "property"? + +Attributes are defined on the HTML markup but properties are defined on the DOM. To illustrate the difference, imagine we have this text field in our HTML: ``. + +```js +const input = document.querySelector('input'); +console.log(input.getAttribute('value')); // Hello +console.log(input.value); // Hello +``` + +But after you change the value of the text field by adding "World!" to it, this becomes: + +```js +console.log(input.getAttribute('value')); // Hello +console.log(input.value); // Hello World! +``` + +###### References + +* https://stackoverflow.com/questions/6003819/properties-and-attributes-in-html + +### Why is extending built-in JavaScript objects not a good idea? + +Extending a built-in/native JavaScript object means adding properties/functions to its `prototype`. While this may seem like a good idea at first, it is dangerous in practice. Imagine your code uses a few libraries that both extend the `Array.prototype` by adding the same `contains` method, the implementations will overwrite each other and your code will break if the behavior of these two methods are not the same. + +The only time you may want to extend a native object is when you want to create a polyfill, essentially providing your own implementation for a method that is part of the JavaScript specification but might not exist in the user's browser due to it being an older browser. + +###### References + +* http://lucybain.com/blog/2014/js-extending-built-in-objects/ + +### Difference between document load event and document DOMContentLoaded event? + +The `DOMContentLoaded` event is fired when the initial HTML document has been completely loaded and parsed, without waiting for stylesheets, images, and subframes to finish loading. + +`window`'s `load` event is only fired after the DOM and all dependent resources and assets have loaded. + +###### References + +* https://developer.mozilla.org/en-US/docs/Web/Events/DOMContentLoaded +* https://developer.mozilla.org/en-US/docs/Web/Events/load + +### What is the difference between `==` and `===`? + +`==` is the abstract equality operator while `===` is the strict equality operator. The `==` operator will compare for equality after doing any necessary type conversions. The `===` operator will not do type conversion, so if two values are not the same type `===` will simply return `false`. When using `==`, funky things can happen, such as: + +```js +1 == '1'; // true +1 == [1]; // true +1 == true; // true +0 == ''; // true +0 == '0'; // true +0 == false; // true +``` + +My advice is never to use the `==` operator, except for convenience when comparing against `null` or `undefined`, where `a == null` will return `true` if `a` is `null` or `undefined`. + +```js +var a = null; +console.log(a == null); // true +console.log(a == undefined); // true +``` + +###### References + +* https://stackoverflow.com/questions/359494/which-equals-operator-vs-should-be-used-in-javascript-comparisons + +### Explain the same-origin policy with regards to JavaScript. + +The same-origin policy prevents JavaScript from making requests across domain boundaries. An origin is defined as a combination of URI scheme, hostname, and port number. This policy prevents a malicious script on one page from obtaining access to sensitive data on another web page through that page's Document Object Model. + +###### References + +* https://en.wikipedia.org/wiki/Same-origin_policy + +### Make this work: + +```js +duplicate([1, 2, 3, 4, 5]); // [1,2,3,4,5,1,2,3,4,5] +``` + +```js +function duplicate(arr) { + return arr.concat(arr); +} + +duplicate([1, 2, 3, 4, 5]); // [1,2,3,4,5,1,2,3,4,5] +``` + +### Why is it called a Ternary expression, what does the word "Ternary" indicate? + +"Ternary" indicates three, and a ternary expression accepts three operands, the test condition, the "then" expression and the "else" expression. Ternary expressions are not specific to JavaScript and I'm not sure why it is even in this list. + +###### References + +* https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Operators/Conditional_Operator + +### What is `"use strict";`? What are the advantages and disadvantages to using it? + +'use strict' is a statement used to enable strict mode to entire scripts or individual functions. Strict mode is a way to opt in to a restricted variant of JavaScript. + +Advantages: + +* Makes it impossible to accidentally create global variables. +* Makes assignments which would otherwise silently fail to throw an exception. +* Makes attempts to delete undeletable properties throw (where before the attempt would simply have no effect). +* Requires that function parameter names be unique. +* `this` is undefined in the global context. +* It catches some common coding bloopers, throwing exceptions. +* It disables features that are confusing or poorly thought out. + +Disadvantages: + +* Many missing features that some developers might be used to. +* No more access to `function.caller` and `function.arguments`. +* Concatenation of scripts written in different strict modes might cause issues. + +Overall, I think the benefits outweigh the disadvantages, and I never had to rely on the features that strict mode blocks. I would recommend using strict mode. + +###### References + +* http://2ality.com/2011/10/strict-mode-hatred.html +* http://lucybain.com/blog/2014/js-use-strict/ + +### Create a for loop that iterates up to `100` while outputting **"fizz"** at multiples of `3`, **"buzz"** at multiples of `5` and **"fizzbuzz"** at multiples of `3` and `5`. + +Check out this version of FizzBuzz by [Paul Irish](https://gist.github.com/jaysonrowe/1592432#gistcomment-790724). + +```js +for (let i = 1; i <= 100; i++) { + let f = i % 3 == 0, + b = i % 5 == 0; + console.log(f ? (b ? 'FizzBuzz' : 'Fizz') : b ? 'Buzz' : i); +} +``` + +I would not advise you to write the above during interviews though. Just stick with the long but clear approach. For more wacky versions of FizzBuzz, check out the reference link below. + +###### References + +* https://gist.github.com/jaysonrowe/1592432 + +### Why is it, in general, a good idea to leave the global scope of a website as-is and never touch it? + +Every script has access to the global scope, and if everyone is using the global namespace to define their own variables, there will bound to be collisions. Use the module pattern (IIFEs) to encapsulate your variables within a local namespace. + +### Why would you use something like the `load` event? Does this event have disadvantages? Do you know any alternatives, and why would you use those? + +The `load` event fires at the end of the document loading process. At this point, all of the objects in the document are in the DOM, and all the images, scripts, links and sub-frames have finished loading. + +The DOM event `DOMContentLoaded` will fire after the DOM for the page has been constructed, but do not wait for other resources to finish loading. This is preferred in certain cases when you do not need the full page to be loaded before initializing. + +TODO. + +###### References + +* https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onload + +### Explain what a single page app is and how to make one SEO-friendly. + +The below is taken from the awesome [Grab Front End Guide](https://github.com/grab/front-end-guide), which coincidentally, is written by me! + +Web developers these days refer to the products they build as web apps, rather than websites. While there is no strict difference between the two terms, web apps tend to be highly interactive and dynamic, allowing the user to perform actions and receive a response for their action. Traditionally, the browser receives HTML from the server and renders it. When the user navigates to another URL, a full-page refresh is required and the server sends fresh new HTML for the new page. This is called server-side rendering. + +However in modern SPAs, client-side rendering is used instead. The browser loads the initial page from the server, along with the scripts (frameworks, libraries, app code) and stylesheets required for the whole app. When the user navigates to other pages, a page refresh is not triggered. The URL of the page is updated via the [HTML5 History API](https://developer.mozilla.org/en-US/docs/Web/API/History_API). New data required for the new page, usually in JSON format, is retrieved by the browser via [AJAX](https://developer.mozilla.org/en-US/docs/AJAX/Getting_Started) requests to the server. The SPA then dynamically updates the page with the data via JavaScript, which it has already downloaded in the initial page load. This model is similar to how native mobile apps work. + +The benefits: + +* The app feels more responsive and users do not see the flash between page navigations due to full-page refreshes. +* Fewer HTTP requests are made to the server, as the same assets do not have to be downloaded again for each page load. +* Clear separation of the concerns between the client and the server; you can easily build new clients for different platforms (e.g. mobile, chatbots, smart watches) without having to modify the server code. You can also modify the technology stack on the client and server independently, as long as the API contract is not broken. + +The downsides: + +* Heavier initial page load due to loading of framework, app code, and assets required for multiple pages. +* There's an additional step to be done on your server which is to configure it to route all requests to a single entry point and allow client-side routing to take over from there. +* SPAs are reliant on JavaScript to render content, but not all search engines execute JavaScript during crawling, and they may see empty content on your page. This inadvertently hurts the Search Engine Optimization (SEO) of your app. However, most of the time, when you are building apps, SEO is not the most important factor, as not all the content needs to be indexable by search engines. To overcome this, you can either server-side render your app or use services such as [Prerender](https://prerender.io/) to "render your javascript in a browser, save the static HTML, and return that to the crawlers". + +###### References + +* https://github.com/grab/front-end-guide#single-page-apps-spas +* http://stackoverflow.com/questions/21862054/single-page-app-advantages-and-disadvantages +* http://blog.isquaredsoftware.com/presentations/2016-10-revolution-of-web-dev/ +* https://medium.freecodecamp.com/heres-why-client-side-rendering-won-46a349fadb52 + +### What is the extent of your experience with Promises and/or their polyfills? + +Possess working knowledge of it. A promise is an object that may produce a single value some time in the future: either a resolved value, or a reason that it's not resolved (e.g., a network error occurred). A promise may be in one of 3 possible states: fulfilled, rejected, or pending. Promise users can attach callbacks to handle the fulfilled value or the reason for rejection. + +Some common polyfills are `$.deferred`, Q and Bluebird but not all of them comply to the specification. ES2015 supports Promises out of the box and polyfills are typically not needed these days. + +###### References + +* https://medium.com/javascript-scene/master-the-javascript-interview-what-is-a-promise-27fc71e77261 + +### What are the pros and cons of using Promises instead of callbacks? + +**Pros** + +* Avoid callback hell which can be unreadable. +* Makes it easy to write sequential asynchronous code that is readable with `.then()`. +* Makes it easy to write parallel asynchronous code with `Promise.all()`. + +**Cons** + +* Slightly more complex code (debatable). +* In older browsers where ES2015 is not supported, you need to load a polyfill in order to use it. + +### What are some of the advantages/disadvantages of writing JavaScript code in a language that compiles to JavaScript? + +Some examples of languages that compile to JavaScript include CoffeeScript, Elm, ClojureScript, PureScript and TypeScript. + +Advantages: + +* Fixes some of the longstanding problems in JavaScript and discourages JavaScript anti-patterns. +* Enables you to write shorter code, by providing some syntactic sugar on top of JavaScript, which I think ES5 lacks, but ES2015 is awesome. +* Static types are awesome (in the case of TypeScript) for large projects that need to be maintained over time. + +Disadvantages: + +* Require a build/compile process as browsers only run JavaScript and your code will need to be compiled into JavaScript before being served to browsers. +* Debugging can be a pain if your source maps do not map nicely to your pre-compiled source. +* Most developers are not familiar with these languages and will need to learn it. There's a ramp up cost involved for your team if you use it for your projects. +* Smaller community (depends on the language), which means resources, tutorials, libraries and tooling would be harder to find. +* IDE/editor support might be lacking. +* These languages will always be behind the latest JavaScript standard. +* Developers should be cognizant of what their code is being compiled to — because that is what would actually be running, and that is what matters in the end. + +Practically, ES2015 has vastly improved JavaScript and made it much nicer to write. I don't really see the need for CoffeeScript these days. + +###### References + +* https://softwareengineering.stackexchange.com/questions/72569/what-are-the-pros-and-cons-of-coffeescript + +### What tools and techniques do you use for debugging JavaScript code? + +* React and Redux + * [React Devtools](https://github.com/facebook/react-devtools) + * [Redux Devtools](https://github.com/gaearon/redux-devtools) +* JavaScript + * [Chrome Devtools](https://hackernoon.com/twelve-fancy-chrome-devtools-tips-dc1e39d10d9d) + * `debugger` statement + * Good old `console.log` debugging + +###### References + +* https://hackernoon.com/twelve-fancy-chrome-devtools-tips-dc1e39d10d9d +* https://raygun.com/blog/javascript-debugging/ + +### What language constructions do you use for iterating over object properties and array items? + +For objects: + +* `for` loops - `for (var property in obj) { console.log(property); }`. However, this will also iterate through its inherited properties, and you will add an `obj.hasOwnProperty(property)` check before using it. +* `Object.keys()` - `Object.keys(obj).forEach(function (property) { ... })`. `Object.keys()` is a static method that will lists all enumerable properties of the object that you pass it. +* `Object.getOwnPropertyNames()` - `Object.getOwnPropertyNames(obj).forEach(function (property) { ... })`. `Object.getOwnPropertyNames()` is a static method that will lists all enumerable and non-enumerable properties of the object that you pass it. + +For arrays: + +* `for` loops - `for (var i = 0; i < arr.length; i++)`. The common pitfall here is that `var` is in the function scope and not the block scope and most of the time you would want block scoped iterator variable. ES2015 introduces `let` which has block scope and it is recommended to use that instead. So this becomes: `for (let i = 0; i < arr.length; i++)`. +* `forEach` - `arr.forEach(function (el, index) { ... })`. This construct can be more convenient at times because you do not have to use the `index` if all you need is the array elements. There are also the `every` and `some` methods which will allow you to terminate the iteration early. + +Most of the time, I would prefer the `.forEach` method, but it really depends on what you are trying to do. `for` loops allow more flexibility, such as prematurely terminate the loop using `break` or incrementing the iterator more than once per loop. + +### Explain the difference between mutable and immutable objects. + +* What is an example of an immutable object in JavaScript? +* What are the pros and cons of immutability? +* How can you achieve immutability in your own code? + +TODO + +### Explain the difference between synchronous and asynchronous functions. + +Synchronous functions are blocking while asynchronous functions are not. In synchronous functions, statements complete before the next statement is run. In this case the program is evaluated exactly in order of the statements and execution of the program is paused if one of the statements take a very long time. + +Asynchronous functions usually accept a callback as a parameter and execution continues on the next line immediately after the asynchronous function is invoked. The callback is only invoked when the asynchronous operation is complete and the call stack is empty. Heavy duty operations such as loading data from a web server or querying a database should be done asynchronously so that the main thread can continue executing other operations instead of blocking until that long operation to complete (in the case of browsers, the UI will freeze). + +### What is event loop? What is the difference between call stack and task queue? + +The event loop is a single-threaded loop that monitors the call stack and checks if there is any work to be done in the task queue. If the call stack is empty and there are callback functions in the task queue, a function is dequeued and pushed onto the call stack to be executed. + +If you haven't already checked out Philip Robert's [talk on the Event Loop](https://2014.jsconf.eu/speakers/philip-roberts-what-the-heck-is-the-event-loop-anyway.html), you should. It is one of the most viewed videos on JavaScript. + +###### References + +* https://2014.jsconf.eu/speakers/philip-roberts-what-the-heck-is-the-event-loop-anyway.html +* http://theproactiveprogrammer.com/javascript/the-javascript-event-loop-a-stack-and-a-queue/ + +### Explain the differences on the usage of `foo` between `function foo() {}` and `var foo = function() {}` + +The former is a function declaration while the latter is a function expression. The key difference is that function declarations have its body hoisted but the bodies of function expressions are not (they have the same hoisting behaviour as variables). For more explanation on hoisting, refer to the question above on hoisting. If you try to invoke a function expression before it is defined, you will get an `Uncaught TypeError: XXX is not a function` error. + +**Function Declaration** + +```js +foo(); // 'FOOOOO' +function foo() { + console.log('FOOOOO'); +} +``` + +**Function Expression** + +```js +foo(); // Uncaught TypeError: foo is not a function +var foo = function() { + console.log('FOOOOO'); +}; +``` + +###### References + +* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/function + +### Other Answers + +* http://flowerszhong.github.io/2013/11/20/javascript-questions.html ## Related @@ -64,9 +1324,4 @@ If you are interested in how data structures are implemented, check out [Lago](h ## Contributing -There are no formal contributing guidelines at the moment as things are still in flux and we might find a better approach to structure content as we go along. You are welcome to contribute whatever you think will be helpful to fellow engineers. If you would like to contribute content for different domains, feel free to create an issue or submit a pull request and we can discuss further. - -## Maintainers - -- [Yangshun Tay](https://github.com/yangshun) -- [Louie Tan](https://github.com/louietyj) +Feel free to make pull requests to correct any mistakes in the answers or suggest new questions. diff --git a/algorithms/README.md b/algorithms/README.md deleted file mode 100644 index abc4ca9e1..000000000 --- a/algorithms/README.md +++ /dev/null @@ -1,578 +0,0 @@ -Algorithm Questions -== - -This section dives deep into practical tips for specific topics of algorithms and data structures which appear frequently in coding questions. Many algorithm questions involve techniques that can be applied to questions of similar nature. The more techniques you have in your arsenal, the higher the chances of passing the interview. They may lead you to discover corner cases you might have missed out or even lead you towards the optimal approach! - -For each topic, study links are recommended to help you master the topic. There is a list of recommended common questions to practice which in my opinion is highly valuable for mastering the core concepts for the topic. - -If you are interested in how data structures are implemented, check out [Lago](https://github.com/yangshun/lago), a Data Structures and Algorithms library for JavaScript. It is pretty much still WIP but I intend to make it into a library that is able to be used in production and also a reference resource for revising Data Structures and Algorithms. - -## Contents - -- [Array](array.md) -- [Dynamic Programming and Memoization](dynamic-programming.md) -- [Geometry](geometry.md) -- [Graph](graph.md) -- [Hash Table](hash-table.md) -- [Heap](heap.md) -- [Interval](interval.md) -- [Linked List](linked-list.md) -- [Math](math.md) -- [Matrix](matrix.md) -- [Object-Oriented Programming](oop.md) -- [Permutation](permutation.md) -- [Queue](queue.md) -- [Sorting and Searching](sorting-searching.md) -- [Stack](stack.md) -- [String](string.md) -- [Tree](tree.md) - -## General Tips - -Clarify any assumptions you made subconsciously. Many questions are under-specified on purpose. - -Always validate input first. Check for invalid/empty/negative/different type input. Never assume you are given the valid parameters. Alternatively, clarify with the interviewer whether you can assume valid input (usually yes), which can save you time from writing code that does input validation. - -Are there any time/space complexity requirements/constraints? - -Check for off-by-one errors. - -In languages where there are no automatic type coercion, check that concatenation of values are of the same type: `int`/`str`/`list`. - -After finishing your code, use a few example inputs to test your solution. - -Is the algorithm meant to be run multiple times, for example in a web server? If yes, the input is likely to be preprocess-able to improve the efficiency in each call. - -Use a mix of functional and imperative programming paradigms: - -- Write pure functions as much as possible. -- Pure functions are easier to reason about and can help to reduce bugs in your implementation. -- Avoid mutating the parameters passed into your function especially if they are passed by reference unless you are sure of what you are doing. -- However, functional programming is usually expensive in terms of space complexity because of non-mutation and the repeated allocation of new objects. On the other hand, imperative code is faster because you operate on existing objects. Hence you will need to achieve a balance between accuracy vs efficiency, by using the right amount of functional and imperative code where appropriate. -- Avoid relying on and mutating global variables. Global variables introduce state. -- If you have to rely on global variables, make sure that you do not mutate it by accident. - -Generally, to improve the speed of a program, we can either choose a more appropriate data structure/algorithm or use more memory. It's a classic space/time tradeoff. - -Data structures are your weapons. Choosing the right weapon for the right battle is the key to victory. Be very familiar about the strengths of each data structure and the time complexities for its various operations. - -Data structures can be augmented to achieve efficient time complexities across different operations. For example, a hash map can be used together with a doubly-linked list to achieve O(1) time complexity for both the `get` and `put` operation in an [LRU cache](https://leetcode.com/problems/lru-cache/). - -Hashmaps are probably the most commonly used data structure for algorithm questions. If you are stuck on a question, your last resort can be to enumerate through the possible data structures (thankfully there aren't that many of them) and consider whether each of them can be applied to the problem. This has worked for me sometimes. - -If you are cutting corners in your code, state that out loud to your interviewer and say what you would do in a non-interview setting (no time constraints). E.g., I would write a regex to parse this string rather than using `split()` which may not cover all cases. - -## Sequence - -#### Notes - -Arrays and strings are considered sequences (a string is a sequence of characters). There are tips relevant for dealing with both arrays and strings which will be covered here. - -Are there duplicate values in the sequence, would it affect the answer? - -Check for sequence out of bounds. - -Be mindful about slicing or concatenating sequences in your code. Typically, slicing and concatenating sequences require O(n) time. Use start and end indices to demarcate a subarray/substring where possible. - -Sometimes you can traverse the sequence from the right rather than from the left. - -Master the [sliding window technique](https://discuss.leetcode.com/topic/30941/here-is-a-10-line-template-that-can-solve-most-substring-problems) that applies to many substring/subarray problems. - -When you are given two sequences to process, it is common to have one index per sequence to traverse/compare the both of them. For example, we use the same approach to merge two sorted arrays. - -#### Corner Cases - -- Empty sequence. -- Sequence with 1 or 2 elements. -- Sequence with repeated elements. - -## Array - -#### Notes - -Is the array sorted or partially sorted? If it is, some form of binary search should be possible. This also usually means that the interviewer is looking for a solution that is faster than O(n). - -Can you sort the array? Sometimes sorting the array first may significantly simplify the problem. Make sure that the order of array elements do not need to be preserved before attempting a sort. - -For questions where summation or multiplication of a subarray is involved, pre-computation using hashing or a prefix/suffix sum/product might be useful. - -If you are given a sequence and the interviewer asks for O(1) space, it might be possible to use the array itself as a hash table. For example, if the array only has values from 1 to N, where N is the length of the array, negate the value at that index (minus one) to indicate presence of that number. - -#### Practice Questions - -- [Two Sum](https://leetcode.com/problems/two-sum/) -- [Best Time to Buy and Sell Stock](https://leetcode.com/problems/best-time-to-buy-and-sell-stock/) -- [Contains Duplicate](https://leetcode.com/problems/contains-duplicate/) -- [Product of Array Except Self](https://leetcode.com/problems/product-of-array-except-self/) -- [Maximum Subarray](https://leetcode.com/problems/maximum-subarray/) -- [Maximum Product Subarray](https://leetcode.com/problems/maximum-product-subarray/) -- [Find Minimum in Rotated Sorted Array](https://leetcode.com/problems/find-minimum-in-rotated-sorted-array/) -- [Search in Rotated Sorted Array](https://leetcode.com/problems/search-in-rotated-sorted-array/) -- [3Sum](https://leetcode.com/problems/3sum/) -- [Container With Most Water](https://leetcode.com/problems/container-with-most-water/) - -## Binary - -#### Study Links - -- [Bits, Bytes, Building With Binary](https://medium.com/basecs/bits-bytes-building-with-binary-13cb4289aafa) - -#### Notes - -Questions involving binary representations and bitwise operations are asked sometimes and you must be absolutely familiar with how to convert a number from decimal form into binary form (and vice versa) in your chosen programming language. - -Some helpful utility snippets: - -- Test kth bit is set: `num & (1 << k) != 0`. -- Set kth bit: `num |= (1 << k)`. -- Turn off kth bit: `num &= ~(1 << k)`. -- Toggle the kth bit: `num ^= (1 << k)`. -- To check if a number is a power of 2, `num & num - 1 == 0`. - -#### Corner Cases - -- Check for overflow/underflow. -- Negative numbers. - -#### Practice Questions - -- [Sum of Two Integers](https://leetcode.com/problems/sum-of-two-integers/) -- [Number of 1 Bits](https://leetcode.com/problems/number-of-1-bits/) -- [Counting Bits](https://leetcode.com/problems/counting-bits/) -- [Missing Number](https://leetcode.com/problems/missing-number/) -- [Reverse Bits](https://leetcode.com/problems/reverse-bits/) - -## Dynamic Programming - -#### Study Links - -- [Demystifying Dynamic Programming](https://medium.freecodecamp.org/demystifying-dynamic-programming-3efafb8d4296) - -#### Notes - -Dynamic Programming (DP) is usually used to solve optimization problems. The only way to get better at DP is to practice. It takes some amount of practice to be able to recognize that a problem can be solved by DP. - -Sometimes you do not need to store the whole DP table in memory, the last two values or the last two rows of the matrix will suffice. - -#### Practice Questions - -- 0/1 Knapsack -- [Climbing Stairs](https://leetcode.com/problems/climbing-stairs/) -- [Coin Change](https://leetcode.com/problems/coin-change/) -- [Longest Increasing Subsequence](https://leetcode.com/problems/longest-increasing-subsequence/) -- [Longest Common Subsequence]() -- [Word Break Problem](https://leetcode.com/problems/word-break/) -- [Combination Sum](https://leetcode.com/problems/combination-sum-iv/) -- [House Robber](https://leetcode.com/problems/house-robber/) and [House Robber II](https://leetcode.com/problems/house-robber-ii/) -- [Decode Ways](https://leetcode.com/problems/decode-ways/) -- [Unique Paths](https://leetcode.com/problems/unique-paths/) -- [Jump Game](https://leetcode.com/problems/jump-game/) - -## Geometry - -#### Notes - -When comparing euclidean distance between two pairs of points, using dx2 + dy2 is sufficient. It is unnecessary to square root the value. - -To find out if two circles overlap, check that the distance between the two centers of the circles is less than the sum of their radii. - -## Graph - -#### Study Links - -- [From Theory To Practice: Representing Graphs](https://medium.com/basecs/from-theory-to-practice-representing-graphs-cfd782c5be38) -- [Deep Dive Through A Graph: DFS Traversal](https://medium.com/basecs/deep-dive-through-a-graph-dfs-traversal-8177df5d0f13) -- [Going Broad In A Graph: BFS Traversal](https://medium.com/basecs/going-broad-in-a-graph-bfs-traversal-959bd1a09255) - -#### Notes - -Be familiar with the various graph representations, graph search algorithms and their time and space complexities. - -You can be given a list of edges and tasked to build your own graph from the edges to perform a traversal on. The common graph representations are: - - Adjacency matrix. - - Adjacency list. - - Hashmap of hashmaps. - -A tree-like diagram could very well be a graph that allows for cycles and a naive recursive solution would not work. In that case you will have to handle cycles and keep a set of visited nodes when traversing. - -#### Graph search algorithms: - -- **Common** - Breadth-first Search, Depth-first Search -- **Uncommon** - Topological Sort, Dijkstra's algorithm -- **Rare** - Bellman-Ford algorithm, Floyd-Warshall algorithm, Prim's algorithm, Kruskal's algorithm - -In coding interviews, graphs are commonly represented as 2-D matrices where cells are the nodes and each cell can traverse to its adjacent cells (up/down/left/right). Hence it is important that you be familiar with traversing a 2-D matrix. When recursively traversing the matrix, always ensure that your next position is within the boundary of the matrix. More tips for doing depth-first searches on a matrix can be found [here](https://discuss.leetcode.com/topic/66065/python-dfs-bests-85-tips-for-all-dfs-in-matrix-question/). A simple template for doing depth-first searches on a matrix goes like this: - -```py -def traverse(matrix): - rows, cols = len(matrix), len(matrix[0]) - visited = set() - directions = ((0, 1), (0, -1), (1, 0), (-1, 0)) - def dfs(i, j): - if (i, j) in visited: - return - visited.add((i, j)) - # Traverse neighbors - for direction in directions: - next_i, next_j = i + direction[0], j + direction[1] - if 0 <= next_i < rows and 0 <= next_j < cols: # Check boundary - # Add any other checking here ^ - dfs(next_i, next_j) - - for i in range(rows): - for j in range(cols): - dfs(i, j) -``` - -#### Corner Cases - -- Empty graph. -- Graph with one or two nodes. -- Disjoint graphs. -- Graph with cycles. - -#### Practice Questions - -- [Clone Graph](https://leetcode.com/problems/clone-graph/) -- [Course Schedule](https://leetcode.com/problems/course-schedule/) -- [Pacific Atlantic Water Flow](https://leetcode.com/problems/pacific-atlantic-water-flow/) -- [Number of Islands](https://leetcode.com/problems/number-of-islands/) -- [Longest Consecutive Sequence](https://leetcode.com/problems/longest-consecutive-sequence/) -- [Alien Dictionary (Leetcode Premium)](https://leetcode.com/problems/alien-dictionary/) -- [Graph Valid Tree (Leetcode Premium)](https://leetcode.com/problems/graph-valid-tree/) -- [Number of Connected Components in an Undirected Graph (Leetcode Premium)](https://leetcode.com/problems/number-of-connected-components-in-an-undirected-graph/) - -## Interval - -#### Notes - -Interval questions are questions where you are given an array of two-element arrays (an interval) and the two values represent a start and an end value. Interval questions are considered part of the array family but they involve some common techniques hence they are extracted out to this special section of their own. - -An example interval array: `[[1, 2], [4, 7]]`. - -Interval questions can be tricky to those who have not tried them before because of the sheer number of cases to consider when they overlap. - -Do clarify with the interviewer whether `[1, 2]` and `[2, 3]` are considered overlapping intervals as it affects how you will write your equality checks. - -A common routine for interval questions is to sort the array of intervals by each interval's starting value. - -Be familiar with writing code to check if two intervals overlap and merging two overlapping intervals: - -```py -def is_overlap(a, b): - return a[0] < b[1] and b[0] < a[1] - -def merge_overlapping_intervals(a, b): - return [min(a[0], b[0]), max(a[1], b[1])] -``` - -#### Corner Cases - -- Single interval. -- Non-overlapping intervals. -- An interval totally consumed within another interval. -- Duplicate intervals. - -#### Practice Questions - -- [Insert Interval](https://leetcode.com/problems/insert-interval/) -- [Merge Intervals](https://leetcode.com/problems/merge-intervals/) -- [Non-overlapping Intervals](https://leetcode.com/problems/non-overlapping-intervals/) -- [Meeting Rooms (Leetcode Premium)](https://leetcode.com/problems/meeting-rooms/) and [Meeting Rooms II (Leetcode Premium)](https://leetcode.com/problems/meeting-rooms-ii/) - -## Linked List - -#### Notes - -Like arrays, linked lists are used to represent sequential data. The benefit of linked lists is that insertion and deletion from anywhere in the list is O(1) whereas in arrays the following elements will have to be shifted. - -Adding a dummy node at the head and/or tail might help to handle many edge cases where operations have to be performed at the head or the tail. The presence of dummy nodes essentially ensures that operations will never have be done on the head or the tail, thereby removing a lot of headache in writing conditional checks to dealing with null pointers. Be sure to remember to remove them at the end of the operation. - -Sometimes linked lists problem can be solved without additional storage. Try to borrow ideas from reverse a linked list problem. - -For deletion in linked lists, you can either modify the node values or change the node pointers. You might need to keep a reference to the previous element. - -For partitioning linked lists, create two separate linked lists and join them back together. - -Linked lists problems share similarity with array problems, think about how you would do it for an array and try to apply it to a linked list. - -Two pointer approaches are also common for linked lists. For example: - - Getting the kth from last node - Have two pointers, where one is k nodes ahead of the other. When the node ahead reaches the end, the other node is k nodes behind. - - Detecting cycles - Have two pointers, where one pointer increments twice as much as the other, if the two pointers meet, means that there is a cycle. - - Getting the middle node - Have two pointers, where one pointer increments twice as much as the other. When the faster node reaches the end of the list, the slower node will be at the middle. - -Be familiar with the following routines because many linked list questions make use of one or more of these routines in the solution: - - Counting the number of nodes in the linked list. - - Reversing a linked list in-place. - - Finding the middle node of the linked list using fast/slow pointers. - - Merging two lists together. - -#### Corner Cases - -- Single node. -- Two nodes. -- Linked list has cycle. Clarify with the interviewer whether there can be a cycle in the list. Usually the answer is no. - -#### Practice Questions - -- [Reverse a Linked List](https://leetcode.com/problems/reverse-linked-list/) -- [Detect Cycle in a Linked List](https://leetcode.com/problems/linked-list-cycle/) -- [Merge Two Sorted Lists](https://leetcode.com/problems/merge-two-sorted-lists/) -- [Merge K Sorted Lists](https://leetcode.com/problems/merge-k-sorted-lists/) -- [Remove Nth Node From End Of List](https://leetcode.com/problems/remove-nth-node-from-end-of-list/) -- [Reorder List](https://leetcode.com/problems/reorder-list/) - -## Math - -#### Notes - -If code involves division or modulo, remember to check for division or modulo by 0 case. - -When a question involves "a multiple of a number", perhaps modulo might be useful. - -Check for and handle overflow/underflow if you are using a typed language like Java and C++. At the very least, mention that overflow/underflow is possible and ask whether you need to handle it. - -Consider negative numbers and floating point numbers. This may sound obvious, but under interview pressure, many obvious cases go unnoticed. - -If the question asks to implement an operator such as power, squareroot or division and want it to be faster than O(n), binary search is usually the approach to go. - -#### Some common formulas: - -- Sum of 1 to N = (n+1) * n/2 -- Sum of GP = 20 + 21 + 22 + 23 + ... 2n = 2n+1 - 1 -- Permutations of N = N! / (N-K)! -- Combinations of N = N! / (K! * (N-K)!) - -#### Practice Questions - -- [Pow(x, n)](https://leetcode.com/problems/powx-n/) -- [Sqrt(x)](https://leetcode.com/problems/sqrtx/) -- [Integer to English Words](https://leetcode.com/problems/integer-to-english-words/) - -## Matrix - -#### Notes - -A matrix is a 2-dimensional array. Questions involving matrices are usually related to dynamic programming or graph traversal. - -For questions involving traversal or dynamic programming, you almost always want to make a copy of the matrix with the same dimensions that is initialized to empty values to store the visited state or dynamic programming table. Be familiar with such a routine: - -```py -rows, cols = len(matrix), len(matrix[0]) -copy = [[0 for _ in range(cols)] for _ in range(rows)] -``` - -Many grid-based games can be modeled as a matrix, such as Tic-Tac-Toe, Sudoku, Crossword, Connect 4, Battleship, etc. It is not uncommon to be asked to verify the winning condition of the game. For games like Tic-Tac-Toe, Connect 4 and Crosswords, where verification has to be done vertically and horizontally, one trick is to write code to verify the matrix for the horizontal cells, transpose the matrix and reuse the logic for horizontal verification to verify originally vertical cells (which are now horizontal). - -Transposing a matrix in Python is simply: - -```py -transposed_matrix = zip(*matrix) -``` - -#### Corner Cases - -- Empty matrix. Check that none of the arrays are 0 length. -- 1 x 1 matrix. -- Matrix with only one row or column. - -#### Practice Questions - -- [Set Matrix Zeroes](https://leetcode.com/problems/set-matrix-zeroes/) -- [Spiral Matrix](https://leetcode.com/problems/spiral-matrix/) -- [Rotate Image](https://leetcode.com/problems/rotate-image/) -- [Word Search](https://leetcode.com/problems/word-search/) - -## Recursion - -#### Notes - -Recursion is useful for permutation, because it generates all combinations and tree-based questions. You should know how to generate all permutations of a sequence as well as how to handle duplicates. - -Remember to always define a base case so that your recursion will end. - -Recursion implicitly uses a stack. Hence all recursive approaches can be rewritten iteratively using a stack. Beware of cases where the recursion level goes too deep and causes a stack overflow (the default limit in Python is 1000). You may get bonus points for pointing this out to the interviewer. Recursion will never be O(1) space complexity because a stack is involved, unless there is [tail-call optimization](https://stackoverflow.com/questions/310974/what-is-tail-call-optimization) (TCO). Find out if your chosen language supports TCO. - -#### Practice Questions - -- [Subsets](https://leetcode.com/problems/subsets/) and [Subsets II](https://leetcode.com/problems/subsets-ii/) -- [Strobogrammatic Number II (Leetcode Premium)](https://leetcode.com/problems/strobogrammatic-number-ii/) - -## String - -#### Notes - -Please read the above tips on sequence. They apply to strings too. - -Ask about input character set and case sensitivity. Usually the characters are limited to lowercase Latin characters, for example a to z. - -When you need to compare strings where the order isn’t important (like anagram), you may consider using a HashMap as a counter. If your language has a built-in Counter class like Python, ask to use that instead. - -If you need to keep a counter of characters, a common mistake is to say that the space complexity required for the counter is O(n). The space required for a counter is O(1) not O(n). This is because the upper bound is the range of characters, which is usually a fixed constant of 26. The input set is just lowercase Latin characters. - -Common data structures for looking up strings efficiently are - -- [Trie / Prefix Tree](https://en.wikipedia.org/wiki/Trie) -- [Suffix Tree](https://en.wikipedia.org/wiki/Suffix_tree) - -Common string algorithms are - -- [Rabin Karp](https://en.wikipedia.org/wiki/Rabin%E2%80%93Karp_algorithm) for efficient searching of substring using a rolling hash. -- [KMP](https://en.wikipedia.org/wiki/Knuth%E2%80%93Morris%E2%80%93Pratt_algorithm) for efficient searching of substring. - -#### Corner Cases - -- Strings with only one distinct character. - -#### Non-repeating Characters - -- Use a 26-bit bitmask to indicate which lower case latin characters are inside the string. - -```py -mask = 0 -for c in set(word): - mask |= (1 << (ord(c) - ord('a'))) -``` - -To determine if two strings have common characters, perform & on the two bitmasks. If the result is non-zero, `mask_a & mask_b > 0`, then the two strings have common characters. - -### Anagram - -An anagram is word switch or word play. It is the result of re-arranging the letters of a word or phrase to produce a new word or phrase, while using all the original letters only once. In interviews, usually we are only bothered with words without spaces in them. - -To determine if two strings are anagrams, there are a few plausible approaches: - -- Sorting both strings should produce the same resulting string. This takes O(nlgn) time and O(lgn) space. -- If we map each character to a prime number and we multiply each mapped number together, anagrams should have the same multiple (prime factor decomposition). This takes O(n) time and O(1) space. -- Frequency counting of characters will help to determine if two strings are anagrams. This also takes O(n) time and O(1) space. - -### Palindrome - -A palindrome is a word, phrase, number, or other sequence of characters which reads the same backward as forward, such as *madam* or *racecar*. - -Here are ways to determine if a string is a palindrome: - -- Reverse the string and it should be equal to itself. -- Have two pointers at the start and end of the string. Move the pointers inward till they meet. At any point in time, the characters at both pointers should match. - -The order of characters within the string matters, so HashMaps are usually not helpful. - -When a question is about counting the number of palindromes, a common trick is to have two pointers that move outward, away from the middle. Note that palindromes can be even or odd length. For each middle pivot position, you need to check it twice: Once that includes the character and once without the character. - -- For substrings, you can terminate early once there is no match. -- For subsequences, use dynamic programming as there are overlapping subproblems. Check out [this question](https://leetcode.com/problems/longest-palindromic-subsequence/). - -#### Practice Questions - -- [Longest Substring Without Repeating Characters](https://leetcode.com/problems/longest-substring-without-repeating-characters/) -- [Longest Repeating Character Replacement](https://leetcode.com/problems/longest-repeating-character-replacement/) -- [Minimum Window Substring](https://leetcode.com/problems/minimum-window-substring/description/) -- [Valid Anagram](https://leetcode.com/problems/valid-anagram) -- [Group Anagrams](https://leetcode.com/problems/group-anagrams/) -- [Valid Parentheses](https://leetcode.com/problems/valid-parentheses) -- [Valid Palindrome](https://leetcode.com/problems/valid-palindrome/) -- [Longest Palindromic Substring](https://leetcode.com/problems/longest-palindromic-substring/) -- [Palindromic Substrings](https://leetcode.com/problems/palindromic-substrings/) -- [Encode and Decode Strings (Leetcode Premium)](https://leetcode.com/problems/encode-and-decode-strings/) - -## Tree - -#### Study Links - -- [Leaf It Up To Binary Trees](https://medium.com/basecs/leaf-it-up-to-binary-trees-11001aaf746d) - -#### Notes - -A tree is an undirected and connected acyclic graph. - -Recursion is a common approach for trees. When you notice that the subtree problem can be used to solve the entire problem, try using recursion. - -When using recursion, always remember to check for the base case, usually where the node is `null`. - -When you are asked to traverse a tree by level, use depth first search. - -Sometimes it is possible that your recursive function needs to return two values. - -If the question involves summation of nodes along the way, be sure to check whether nodes can be negative. - -You should be very familiar with writing pre-order, in-order, and post-order traversal recursively. As an extension, challenge yourself by writing them iteratively. Sometimes interviewers ask candidates for the iterative approach, especially if the candidate finishes writing the recursive approach too quickly. - - -#### Corner Cases - -- Empty tree. -- Single node. -- Two nodes. -- Very skewed tree (like a linked list). - -### Binary Tree - -In-order traversal of a binary tree is insufficient to uniquely serialize a tree. Pre-order or post-order traversal is also required. - -### Binary Search Tree (BST) - -In-order traversal of a BST will give you all elements in order. - -Be very familiar with the properties of a BST and validating that a binary tree is a BST. This comes up more often than expected. - -When a question involves a BST, the interviewer is usually looking for a solution which runs faster than O(n). - -#### Practice Questions - -- [Maximum Depth of Binary Tree](https://leetcode.com/problems/maximum-depth-of-binary-tree/) -- [Same Tree](https://leetcode.com/problems/same-tree/) -- [Invert/Flip Binary Tree](https://leetcode.com/problems/invert-binary-tree/) -- [Binary Tree Maximum Path Sum](https://leetcode.com/problems/binary-tree-maximum-path-sum/) -- [Binary Tree Level Order Traversal](https://leetcode.com/problems/binary-tree-level-order-traversal/) -- [Serialize and Deserialize Binary Tree](https://leetcode.com/problems/serialize-and-deserialize-binary-tree/) -- [Subtree of Another Tree](https://leetcode.com/problems/subtree-of-another-tree/) -- [Construct Binary Tree from Preorder and Inorder Traversal](https://leetcode.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/) -- [Validate Binary Search Tree](https://leetcode.com/problems/validate-binary-search-tree/) -- [Kth Smallest Element in a BST](https://leetcode.com/problems/kth-smallest-element-in-a-bst/) -- [Lowest Common Ancestor of BST](https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree/) - -## Trie - -#### Study Links - -- [Trying to Understand Tries](https://medium.com/basecs/trying-to-understand-tries-3ec6bede0014) -- [Implement Trie (Prefix Tree)](https://leetcode.com/articles/implement-trie-prefix-tree/) - -#### Notes - -Tries are special trees (prefix trees) that make searching and storing strings more efficient. Tries have many practical applications, such as conducting searches and providing autocomplete. It is helpful to know these common applications so that you can easily identify when a problem can be efficiently solved using a trie. - -Sometimes preprocessing a dictionary of words (given in a list) into a trie, will improve the efficiency of searching for a word of length k, among n words. Searching becomes O(k) instead of O(n). - -Be familiar with implementing, from scratch, a `Trie` class and its `add`, `remove` and `search` methods. - -#### Practice Questions - -- [Implement Trie (Prefix Tree)](https://leetcode.com/problems/implement-trie-prefix-tree) -- [Add and Search Word](https://leetcode.com/problems/add-and-search-word-data-structure-design) -- [Word Search II](https://leetcode.com/problems/word-search-ii/) - -## Heap - -#### Study Links - -- [Learning to Love Heaps](https://medium.com/basecs/learning-to-love-heaps-cef2b273a238) - -#### Notes - -If you see a top or lowest *k* being mentioned in the question, it is usually a signal that a heap can be used to solve the problem, such as in [Top K Frequent Elements](https://leetcode.com/problems/top-k-frequent-elements/). - -If you require the top *k* elements use a Min Heap of size *k*. Iterate through each element, pushing it into the heap. Whenever the heap size exceeds *k*, remove the minimum element, that will guarantee that you have the *k* largest elements. - -#### Practice Questions - -- [Merge K Sorted Lists](https://leetcode.com/problems/merge-k-sorted-lists/) -- [Top K Frequent Elements](https://leetcode.com/problems/top-k-frequent-elements/) -- [Find Median from Data Stream](https://leetcode.com/problems/find-median-from-data-stream/) - -###### References - -- http://blog.triplebyte.com/how-to-pass-a-programming-interview -- https://quip.com/q41AA3OmoZbC -- http://www.geeksforgeeks.org/must-do-coding-questions-for-companies-like-amazon-microsoft-adobe/ -- https://medium.com/basecs diff --git a/algorithms/array.md b/algorithms/array.md deleted file mode 100644 index 0de9fedc1..000000000 --- a/algorithms/array.md +++ /dev/null @@ -1,60 +0,0 @@ -Arrays -== - -- In an array of arrays, e.g. given `[[], [1, 2, 3], [4, 5], [], [], [6, 7], [8], [9, 10], [], []]`, print: `1, 2, 3, 4, 5, 6, 7, 8, 9, 10`. - - Implement an iterator that supports `hasNext()`, `next()` and `remove()` methods. -- Given a list of item prices, find all possible combinations of items that sum a particular value `K`. -- Paginate an array with constraints, such as skipping certain items. -- Implement a circular buffer using an array. -- Given array of arrays, sort them in ascending order. -- Given an array of integers, print out a histogram using the said array; include a base layer (all stars) - - E.g. `[5, 4, 0, 3, 4, 1]` - -``` -* -** * -** ** -** ** -** *** -****** -``` - -- Given an array and an index, find the product of the elements of the array except the element at that index. -- Given a set of rectangles represented by a height and an interval along the y-axis, determine the size of its union. -- Given 2 separate arrays, write a method to find the values that exist in both arrays and return them. -- Given an array of integers find whether there is a sub-sequence that sums to 0 and return it. - - E.g. `[1, 2, -3, 1]` => `[1, 2, -3]` or `[2, -3, 1]`. -- Given an input array and another array that describes a new index for each element, mutate the input array so that each element ends up in their new index. Discuss the runtime of the algorithm and how you can be sure there would not be any infinite loops. -- Given an array of non-negative numbers, find continuous subarray with sum to S. - - [Source](http://blog.gainlo.co/index.php/2016/06/01/subarray-with-given-sum/). -- Given an array of numbers list out all triplets that sum to 0. Do so with a running time of less than O(n^3). - - [Source](http://blog.gainlo.co/index.php/2016/07/19/3sum/). -- Given an array of numbers list out all quadruplets that sum to 0. Do so with a running time of less than O(n^4). -- Given an array of integers, move all the zeroes to the end while preserving the order of the other elements. You have to do it in-place and are not allowed to use any extra storage. -- Given an array of integers, find the subarray with the largest sum. Can you do it in linear time. - - Maximum subarray sum problem. -- You have an array with the heights of an island (at point 1, point 2 etc) and you want to know how much water would remain on this island (without flowing away). - - Trapping rain water question. -- Given an array containing only digits `0-9`, add one to the number and return the array. - - E.g. Given `[1, 4, 2, 1]` which represents `1421`, return `[1, 4, 2, 2]` which represents `1422`. -- Find the second maximum value in an array. -- Given an array, find the longest arithmetic progression. -- Rotate an array by an offset of k. -- Remove duplicates in an unsorted array where the duplicates are at a distance of k or less from each other. -- Given an unsorted list of integers, return true if the list contains any duplicates within k indices of each element. Do it faster than O(n^2). -- Given an unsorted list of integers, return true if the list contains any fuzzy duplicates within k indices of each element. A fuzzy duplicate is another integer within d of the original integer. Do it faster than O(n^2). - - E.g. If d = 4, then 6 is a fuzzy duplicate of 3 but 8 is not. -- Say you have an unordered list of numbers ranging from 1 to n, and one of the numbers is removed, how do you find that number? What if two numbers are removed? -- Given an array of string, find the duplicated elements. - - [Source](http://blog.gainlo.co/index.php/2016/05/10/duplicate-elements-of-an-array/). -- Given an array of integers, find a maximum sum of non-adjacent elements. - - E.g. `[1, 0, 3, 9, 2]` should return `10 (1 + 9)`. - - [Source](http://blog.gainlo.co/index.php/2016/12/02/uber-interview-question-maximum-sum-non-adjacent-elements/) -- Given an array of integers, modify the array by moving all the zeros to the end (right side). The order of other elements doesn't matter. - - E.g. `[1, 2, 0, 3, 0, 1, 2]`, the program can output `[1, 2, 3, 1, 2, 0, 0]`. - - [Source](http://blog.gainlo.co/index.php/2016/11/18/uber-interview-question-move-zeroes/). -- Given an array, return the length of the longest increasing contiguous subarray. - - E.g., `[1, 3, 2, 3, 4, 8, 7, 9]`, should return `4` because the longest increasing array is `[2, 3, 4, 8]`. - - [Source](http://blog.gainlo.co/index.php/2017/02/02/uber-interview-questions-longest-increasing-subarray/). -- Given an array of integers where every value appears twice except one, find the single, non-repeating value. Follow up: do so with O(1) space. - - E.g., `[2, 5, 3, 2, 1, 3, 4, 5, 1]` returns 4, because it is the only value that appears in the array only once. diff --git a/algorithms/bit-manipulation.md b/algorithms/bit-manipulation.md deleted file mode 100644 index 76aa41539..000000000 --- a/algorithms/bit-manipulation.md +++ /dev/null @@ -1,7 +0,0 @@ -Bit Manipulation -== - -- How do you verify if an interger is a power of 2? -- Write a program to print the binary representation of an integer. -- Write a program to print out the number of 1 bits in a given integer. -- Write a program to determine the largest possible integer using the same number of 1 bits in a given number. diff --git a/algorithms/dynamic-programming.md b/algorithms/dynamic-programming.md deleted file mode 100644 index 978fa611d..000000000 --- a/algorithms/dynamic-programming.md +++ /dev/null @@ -1,26 +0,0 @@ -Dynamic Programming -== - -- Given a flight itinerary consisting of starting city, destination city, and ticket price (2D list) - find the optimal price flight path to get from start to destination. (A variation of Dynamic Programming Shortest Path) -- Given some coin denominations and a target value `M`, return the coins combination with the minimum number of coins. - - Time complexity: `O(MN)`, where N is the number of distinct type of coins. - - Space complexity: `O(M)`. -- Given a set of numbers in an array which represent a number of consecutive days of Airbnb reservation requested, as a host, pick the sequence which maximizes the number of days of occupancy, at the same time, leaving at least a 1-day gap in-between bookings for cleaning. - - The problem reduces to finding the maximum sum of non-consecutive array elements. - - E.g. - ~~~ - // [5, 1, 1, 5] => 10 - The above array would represent an example booking period as follows - - // Dec 1 - 5 - // Dec 5 - 6 - // Dec 6 - 7 - // Dec 7 - 12 - - The answer would be to pick Dec 1-5 (5 days) and then pick Dec 7-12 for a total of 10 days of - occupancy, at the same time, leaving at least 1-day gap for cleaning between reservations. - - Similarly, - // [3, 6, 4] => 7 - // [4, 10, 3, 1, 5] => 15 - ~~~ -- Given a list of denominations (e.g., `[1, 2, 5]` means you have coins worth $1, $2, and $5) and a target number `k`, find all possible combinations, if any, of coins in the given denominations that add up to `k`. You can use coins of the same denomination more than once. diff --git a/algorithms/geometry.md b/algorithms/geometry.md deleted file mode 100644 index 062f861bf..000000000 --- a/algorithms/geometry.md +++ /dev/null @@ -1,7 +0,0 @@ -Geometry -== - -- You have a plane with lots of rectangles on it, find out how many of them intersect. -- Which data structure would you use to query the k-nearest points of a set on a 2D plane? -- Given many points, find k points that are closest to the origin. -- How would you triangulate a polygon? diff --git a/algorithms/graph.md b/algorithms/graph.md deleted file mode 100644 index 119000baf..000000000 --- a/algorithms/graph.md +++ /dev/null @@ -1,10 +0,0 @@ -Graph -== - -- Given a list of sorted words from an alien dictionary, find the order of the alphabet. - - Alien Dictionary Topological Sort question. -- Find if a given string matches any path in a labeled graph. A path may contain cycles. -- Given a bipartite graph, separate the vertices into two sets. -- You are a thief trying to sneak across a rectangular 100 x 100m field. There are alarms placed on the fields and they each have a circular sensing radius which will trigger if anyone steps into it. Each alarm has its own radius. Determine if you can get from one end of the field to the other end. -- Given a graph and two nodes, determine if there exists a path between them. -- Determine if a cycle exists in the graph. diff --git a/algorithms/hash-table.md b/algorithms/hash-table.md deleted file mode 100644 index c8655047c..000000000 --- a/algorithms/hash-table.md +++ /dev/null @@ -1,7 +0,0 @@ -Hash Table -== - -- Describe an implementation of a least-used cache, and big-O notation of it. -- A question involving an API's integration with hash map where the buckets of hash map are made up of linked lists. -- Implement data structure `Map` storing pairs of integers (key, value) and define following member functions in O(1) runtime: `void insert(key, value)`, `void delete(key)`, `int get(key)`, `int getRandomKey()`. - - [Source](http://blog.gainlo.co/index.php/2016/08/14/uber-interview-question-map-implementation/). diff --git a/algorithms/heap.md b/algorithms/heap.md deleted file mode 100644 index 1e68064fe..000000000 --- a/algorithms/heap.md +++ /dev/null @@ -1,5 +0,0 @@ -Heap -== - -- Merge `K` sorted lists together into a single list. -- Given a stream of integers, write an efficient function that returns the median value of the integers. diff --git a/algorithms/interval.md b/algorithms/interval.md deleted file mode 100644 index 5dd3e373e..000000000 --- a/algorithms/interval.md +++ /dev/null @@ -1,28 +0,0 @@ -Interval -== - -- Given a list of schedules, provide a list of times that are available for a meeting. - ``` - [ - [[4,5], [6,10], [12,14]], - [[4,5], [5,9], [13,16]], - [[11,14]] - ] - - Example Output: - [[0,4], [11,12], [16,23]] - ``` -- You have a number of meetings (with their start and end times). You need to schedule them using the minimum number of rooms. Return the list of meetings in every room. -- Interval ranges: - - Given 2 interval ranges, create a function to tell me if these ranges intersect. Both start and end are inclusive: `[start, end]` - - E.g. `[1, 4]` and `[5, 6]` => `false` - - E.g. `[1, 4]` and `[3, 6]` => `true` - - Given 2 interval ranges that intersect, now create a function to merge the 2 ranges into a single continuous range. - - E.g. `[1, 4]` and `[3, 6]` => `[1, 6]` - - Now create a function that takes a group of unsorted, unorganized intervals, merge any intervals that intersect and sort them. The result should be a group of sorted, non-intersecting intervals. - - Now create a function to merge a new interval into a group of sorted, non-intersecting intervals. After the merge, all intervals should remain - non-intersecting. -- Given a list of meeting times, check if any of them overlap. The follow-up question is to return the minimum number of rooms required to accommodate all the meetings. - - [Source](http://blog.gainlo.co/index.php/2016/07/12/meeting-room-scheduling-problem/) -- If you have a list of intervals, how would you merge them? - - E.g. `[1, 3], [8, 11], [2, 6]` => `[1, 6], [8-11]` diff --git a/algorithms/linked-list.md b/algorithms/linked-list.md deleted file mode 100644 index 8dd1dbdd6..000000000 --- a/algorithms/linked-list.md +++ /dev/null @@ -1,12 +0,0 @@ -Linked List -== - -- Given a linked list, in addition to the next pointer, each node has a child pointer that can point to a separate list. With the head node, flatten the list to a single-level linked list. - - [Source](http://blog.gainlo.co/index.php/2016/06/12/flatten-a-linked-list/) -- Reverse a singly linked list. Implement it recursively and iteratively. -- Convert a binary tree to a doubly circular linked list. -- Implement an LRU cache with O(1) runtime for all its operations. -- Check distance between values in linked list. -- A question involving an API's integration with hash map where the buckets of hash map are made up of linked lists. -- Given a singly linked list (a list which can only be traversed in one direction), find the item that is located at 'k' items from the end. So if the list is a, b, c, d and k is 2 then the answer is 'c'. The solution should not search the list twice. -- How can you tell if a Linked List is a Palindrome? diff --git a/algorithms/math.md b/algorithms/math.md deleted file mode 100644 index fdff1ce5f..000000000 --- a/algorithms/math.md +++ /dev/null @@ -1,20 +0,0 @@ -Math -== - -- Create a square root function. -- Given a string such as "123" or "67", write a function to output the number represented by the string without using casting. -- Make a program that can print out the text form of numbers from 1 - 1000 (ex. 20 is "twenty", 105 is "one hundred and five"). -- Write a function that parses Roman numerals. - - E.g. `XIV` returns `14`. -- Write in words for a given digit. - - E.g. `123` returns `one hundred and twenty three`. -- Given a number `N`, find the largest number just smaller than `N` that can be formed using the same digits as `N`. -- Compute the square root of `N` without using any existing functions. -- Given numbers represented as binary strings, and return the string containing their sum. - - E.g. `add('10010', '101')` returns `'10111'`. -- Take in an integer and return its english word-format. - - E.g. 1 -> "one", -10,203 -> "negative ten thousand two hundred and three". -- Write a function that returns values randomly, according to their weight. Suppose we have 3 elements with their weights: A (1), B (1) and C (2). The function should return A with probability 25%, B with 25% and C with 50% based on the weights. - - [Source](http://blog.gainlo.co/index.php/2016/11/11/uber-interview-question-weighted-random-numbers/) -- Given a number, how can you get the next greater number with the same set of digits? - - [Source](http://blog.gainlo.co/index.php/2017/01/20/arrange-given-numbers-to-form-the-biggest-number-possible/) diff --git a/algorithms/matrix.md b/algorithms/matrix.md deleted file mode 100644 index a0977e9e1..000000000 --- a/algorithms/matrix.md +++ /dev/null @@ -1,18 +0,0 @@ -Matrix -== - -- You're given a 3 x 3 board of a tile puzzle, with 8 tiles numbered 1 to 8, and an empty spot. You can move any tile adjacent to the empty spot, to the empty spot, creating an empty spot where the tile originally was. The goal is to find a series of moves that will solve the board, i.e. get `[[1, 2, 3], [4, 5, 6], [7, 8, - ]]` where - is the empty tile. -- Boggle implementation. Given a dictionary, and a matrix of letters, find all the words in the matrix that are in the dictionary. You can go across, down or diagonally. -- The values of the matrix will represent numbers of carrots available to the rabbit in each square of the garden. If the garden does not have an exact center, the rabbit should start in the square closest to the center with the highest carrot count. On a given turn, the rabbit will eat the carrots available on the square that it is on, and then move up, down, left, or right, choosing the square that has the most carrots. If there are no carrots left on any of the adjacent squares, the rabbit will go to sleep. You may assume that the rabbit will never have to choose between two squares with the same number of carrots. Write a function which takes a garden matrix and returns the number of carrots the rabbit eats. You may assume the matrix is rectangular with at least 1 row and 1 column, and that it is populated with non-negative integers. For example, - - Example: `[[5, 7, 8, 6, 3], [0, 0, 7, 0, 4], [4, 6, 3, 4, 9], [3, 1, 0, 5, 8]]` should return `27`. -- Print a matrix in a spiral fashion. -- In the Game of life, calculate how to compute the next state of the board. Follow up was to do it if there were memory constraints (board represented by a 1 TB file). -- Grid Illumination: Given an NxN grid with an array of lamp coordinates. Each lamp provides illumination to every square on their x axis, every square on their y axis, and every square that lies in their diagonal (think of a Queen in chess). Given an array of query coordinates, determine whether that point is illuminated or not. The catch is when checking a query all lamps adjacent to, or on, that query get turned off. The ranges for the variables/arrays were about: 10^3 < N < 10^9, 10^3 < lamps < 10^9, 10^3 < queries < 10^9. -- You are given a matrix of integers. Modify the matrix such that if a row or column contains a 0, make the values in the entire row or column 0. -- Given an N x N matrix filled randomly with different colors (no limit on what the colors are), find the total number of groups of each color - a group consists of adjacent cells of the same color touching each other. -- You have a 4 x 4 board with characters. You need to write a function that finds if a certain word exists in the board. You can only jump to neighboring characters (including diagonally adjacent). -- Count the number of islands in a binary matrix of 0's and 1's. -- Check a 6 x 7 Connect 4 board for a winning condition. -- Given a fully-filled Sudoku board, check whether fulfills the Sudoku condition. -- Implement a function that checks if a player has won tic-tac-toe. -- Given an N x N matrix of 1's and 0's, figure out if all of the 1's are connected. diff --git a/algorithms/oop.md b/algorithms/oop.md deleted file mode 100644 index 0df9cc2da..000000000 --- a/algorithms/oop.md +++ /dev/null @@ -1,8 +0,0 @@ -Object-Oriented Programming -== - -- How would you design a chess game? What classes and objects would you use? What methods would they have? -- How would you design the data structures for a book keeping system for a library? -- Explain how you would design a HTTP server? Give examples of classes, methods, and interfaces. What are the challenges here? -- Discuss algorithms and data structures for a garbage collector? -- How would you implement an HR system to keep track of employee salaries and benefits? diff --git a/algorithms/permutation.md b/algorithms/permutation.md deleted file mode 100644 index 00116bf6b..000000000 --- a/algorithms/permutation.md +++ /dev/null @@ -1,12 +0,0 @@ -Permutation -== - -- You are given a 7 digit phone number, and you should find all possible letter combinations based on the digit-to-letter mapping on numeric pad and return only the ones that have valid match against a given dictionary of words. -- Give all possible letter combinations from a phone number. -- Generate all subsets of a string. -- Print all possible `N` pairs of balanced parentheses. - - E.g. when `N` is `2`, the function should print `(())` and `()()`. - - E.g. when `N` is `3`, we should get `((()))`, `(()())`, `(())()`, `()(())`, `()()()`. - - [Source](http://blog.gainlo.co/index.php/2016/12/23/uber-interview-questions-permutations-parentheses/) -- Given a list of arrays, return a list of arrays, where each array is a combination of one element in each given array. - - E.g. If the input is `[[1, 2, 3], [4], [5, 6]]`, the output should be `[[1, 4, 5], [1, 4, 6], [2, 4, 5], [2, 4, 6], [3, 4, 5], [3, 4, 6]]`. diff --git a/algorithms/queue.md b/algorithms/queue.md deleted file mode 100644 index 31612de9b..000000000 --- a/algorithms/queue.md +++ /dev/null @@ -1,5 +0,0 @@ -Queue -== - -- Implement a Queue class from scratch with an existing bug, the bug is that it cannot take more than 5 elements. -- Implement a Queue using two stacks. You may only use the standard `push()`, `pop()`, and `peek()` operations traditionally available to stacks. You do not need to implement the stack yourself (i.e. an array can be used to simulate a stack). diff --git a/algorithms/sorting-searching.md b/algorithms/sorting-searching.md deleted file mode 100644 index 4b36ba959..000000000 --- a/algorithms/sorting-searching.md +++ /dev/null @@ -1,16 +0,0 @@ -Sorting and Searching -== - -- Sorting search results on a page given a certain set of criteria. -- Sort a list of numbers in which each number is at a distance `K` from its actual position. -- Given an array of integers, sort the array so that all odd indexes are greater than the even indexes. -- Given users with locations in a list and a logged-in user with locations, find their travel buddies (people who shared more than half of your locations). -- Search for an element in a sorted and rotated array. - - [Source](http://blog.gainlo.co/index.php/2017/01/12/rotated-array-binary-search/) -- Sort a list where each element is no more than k positions away from its sorted position. -- Search for an item in a sorted, but rotated, array. -- Merge two sorted lists together. -- Give 3 distinct algorithms to find the K largest values in a list of N items. -- Find the minimum element in a sorted rotated array in faster than O(n) time. -- Write a function that takes a number as input and outputs the biggest number with the same set of digits. - - [Source](http://blog.gainlo.co/index.php/2017/01/20/arrange-given-numbers-to-form-the-biggest-number-possible/) diff --git a/algorithms/stack.md b/algorithms/stack.md deleted file mode 100644 index 063e3a645..000000000 --- a/algorithms/stack.md +++ /dev/null @@ -1,9 +0,0 @@ -Stack -== - -- Implementation of an interpreter for a small language that does multiplication/addition/etc. -- Design a `MinStack` data structure that supports a `min()` operation that returns the minimum value in the stack in O(1) time. -- Write an algorithm to determine if all of the delimiters in an expression are matched and closed. - - E.g. `{ac[bb]}`, `[dklf(df(kl))d]{}` and `{[[[]]]}` are matched. But `{3234[fd` and `{df][d}` are not. - - [Source](http://blog.gainlo.co/index.php/2016/09/30/uber-interview-question-delimiter-matching/) -- Sort a stack in ascending order using an additional stack. diff --git a/algorithms/string.md b/algorithms/string.md deleted file mode 100644 index 247aea051..000000000 --- a/algorithms/string.md +++ /dev/null @@ -1,58 +0,0 @@ -String -== - -- Output list of strings representing a page of hostings given a list of CSV strings. -- Given a list of words, find the word pairs that when concatenated form a palindrome. -- Find the most efficient way to identify what character is out of place in a non-palindrome. -- Implement a simple regex parser which, given a string and a pattern, returns a boolean indicating whether the input matches the pattern. By simple, we mean that the regex can only contain the following special characters: `*` (star), `.` (dot), `+` (plus). The star means that there will be zero or more of the previous character in that place in the pattern. The dot means any character for that position. The plus means one or more of previous character in that place in the pattern. -- Find all words from a dictionary that are x edit distance away. -- Given a string IP and number n, print all CIDR addresses that cover that range. -- Write a function called `eval`, which takes a string and returns a boolean. This string is allowed 6 different characters: `0`, `1`, `&`, `|`, `(`, and `)`. `eval` should evaluate the string as a boolean expression, where `0` is `false`, `1` is `true`, `&` is an `and`, and `|` is an `or`. - - E.g `"(0 | (1 | 0)) & (1 & ((1 | 0) & 0))"` -- Given a pattern string like `"abba"` and an input string like `"redbluebluered"`, return `true` if and only if there's a one to one mapping of letters in the pattern to substrings of the input. - - E.g. `"abba"` and `"redbluebluered"` should return `true`. - - E.g. `"aaaa"` and `"asdasdasdasd"` should return `true`. - - E.g. `"aabb"` and `"xyzabcxzyabc"` should return `false`. -- If you received a file in chunks, calculate when you have the full file. Quite an open-ended question. Can assume chunks come with start and end, or size, etc. -- Given a list of names (strings) and the width of a line, design an algorithm to display them using the minimum number of lines. -- Design a spell-checking algorithm. -- Count and say problem. -- Longest substring with `K` unique characters. - - [Source](http://blog.gainlo.co/index.php/2016/04/12/find-the-longest-substring-with-k-unique-characters/) -- Given a set of random strings, write a function that returns a set that groups all the anagrams together. - - [Source](http://blog.gainlo.co/index.php/2016/05/06/group-anagrams/) -- Given a string, find the longest substring without repeating characters. For example, for string `'abccdefgh'`, the longest substring is `'cdefgh'`. - - [Source](http://blog.gainlo.co/index.php/2016/10/07/facebook-interview-longest-substring-without-repeating-characters/) -- Given a string, return the string with duplicate characters removed. -- Write a function that receives a regular expression (allowed chars = from `'a'` to `'z'`, `'*'`, `'.'`) and a string containing lower case english alphabet characters and return `true` or `false` whether the string matches the regex. - - E.g. `'ab*a'`, `'abbbbba'` => `true`. - - E.g. `'ab*b.'`, `'aba'` => `true`. - - E.g. `'abc*'`, `'acccc'` => `false`. -- Given a rectangular grid with letters, search if some word is in the grid. -- Given two strings representing integer numbers (`'123'` , `'30'`) return a string representing the sum of the two numbers: `'153'`. -- A professor wants to see if two students have cheated when writing a paper. Design a function `hasCheated(String s1, String s2, int N)` that evaluates to `true` if two strings have a common substring of length `N`. - - Follow up: Assume you don't have the possibility of using `String.contains()` and `String.substring()`. How would you implement this? -- Print all permutations of a given string. -- Parse a string containing numbers and `'+'`, `'-'` and parentheses. Evaluate the expression. `-2+(3-5)` should return `-4`. -- Output a substring with at most `K` unique characters. - - E.g. `'aabc'` and `k` = 2 => `'aab'`. -- Ensure that there are a minimum of `N` dashes between any two of the same characters of a string. - - E.g. `n = 2, string = 'ab-bcdecca'` => `'ab--bcdec--ca'`. -- Find the longest palindrome in a string. -- Give the count and the number following in the series. - - E.g. `1122344`, next: `21221324`, next: `12112211121214`. - - Count and say problem. -- Compress a string by grouping consecutive similar questions together: - - E.g. `'aaabbbcc' => `'a3b3c2'`. -- You have a string consisting of open and closed parentheses, but parentheses may be imbalanced. Make the parentheses balanced and return the new string. -- Given a set of strings, return the smallest subset that contains prefixes for every string. - - E.g. `['foo', 'foog', 'food', 'asdf']` => `['foo', 'asdf']`. -- Write a function that would return all the possible words generated when using a phone (pre-smartphone era) numpad to type. -- Given a dictionary and a word, find the minimum number of deletions needed on the word in order to make it a valid word. - - [Source](http://blog.gainlo.co/index.php/2016/04/29/minimum-number-of-deletions-of-a-string/) -- How to check if a string contains an anagram of another string? - - [Source](http://blog.gainlo.co/index.php/2016/04/08/if-a-string-contains-an-anagram-of-another-string/) -- Find all k-lettered words from a string. -- Given a string of open and close parentheses, find the minimum number of edits needed to balance a string of parentheses. -- Run length encoding - Write a string compress function that returns `'R2G1B1'` given `'RRGB'`. -- Write a function that finds all the different ways you can split up a word into a concatenation of two other words. diff --git a/algorithms/topics.md b/algorithms/topics.md deleted file mode 100644 index 9718e7e78..000000000 --- a/algorithms/topics.md +++ /dev/null @@ -1,89 +0,0 @@ -Topics -== - -## Arrays - -## Strings - -- Prefix trees (Tries) -- Suffix trees -- Suffix arrays -- KMP -- Rabin-Karp -- Boyer-Moore - -## Sorting - -- Bubble sort -- Insertion sort -- Merge sort -- Quick sort -- Selection sort -- Bucket sort -- Radix sort -- Counting sort - -## Linked Lists - -## Stacks - -## Queues - -## Hash tables - -- Collision resolution algorithms - -## Trees - -- BFS -- DFS (inorder, postorder, preorder) -- Height - -## Binary Search Trees - -- Insert node -- Delete a node -- Find element in BST -- Find min, max element in BST -- Get successor element in tree -- Check if a binary tree is a BST or not - -## Heaps / Priority Queues - -- Insert -- Bubble up -- Extract max -- Remove -- Heapify -- Heap sort - -## Graphs - -- Various implementations - - Adjacency matrix - - Adjacency list - - Adjacency map -- Single-source shortest path -- Dijkstra -- Bellman-Ford -- Topo sort -- MST -- Prim algorithm -- Kruskal's algorithm -- Union Find Data Structure -- Count connected components in a graph -- List strongly connected components in a graph -- Check for bipartite graph - -## Dynamic Programming - -- Count Change -- 0-1 Knapsack - -## System Design - -- http://www.hiredintech.com/system-design/ -- https://www.quora.com/How-do-I-prepare-to-answer-design-questions-in-a-technical-interview?redirected_qid=1500023 -- http://blog.gainlo.co/index.php/2015/10/22/8-things-you-need-to-know-before-system-design-interviews/ -- https://github.com/donnemartin/system-design-primer -- https://github.com/jwasham/coding-interview-university/blob/master/extras/cheat%20sheets/system-design.pdf diff --git a/algorithms/tree.md b/algorithms/tree.md deleted file mode 100644 index be7720db3..000000000 --- a/algorithms/tree.md +++ /dev/null @@ -1,36 +0,0 @@ -Tree -== - -- Find the height of a tree. -- Find the longest path from the root to leaf in a tree. -- Find the deepest left leaf of a tree. -- Print all paths of a binary tree. - - [Source](http://blog.gainlo.co/index.php/2016/04/15/print-all-paths-of-a-binary-tree/) -- Second largest element of a BST. - - [Source](http://blog.gainlo.co/index.php/2016/06/03/second-largest-element-of-a-binary-search-tree/) -- Given a binary tree and two nodes, how to find the common ancestor of the two nodes? - - [Source](http://blog.gainlo.co/index.php/2016/07/06/lowest-common-ancestor/) -- Find the lowest common ancestor of two nodes in a binary search tree. -- Print the nodes in an n-ary tree level by level, one printed line per level. -- Given a directory of files and folders (and relevant functions), how would you parse through it to find equivalent files? -- Write a basic file system and implement the commands ls, pwd, mkdir, create, rm, cd, cat, mv. -- Compute the intersection of two binary search trees. -- Given a binary tree, output all the node to leaf paths of it. -- Given a string of characters without spaces, is there a way to break the string into valid words without leftover characters? -- Print a binary tree level by level. -- Determine if a binary tree is "complete" (i.e, if all leaf nodes were either at the maximum depth or max depth-1, and were 'pressed' along the left side of the tree). -- Find the longest path in a binary tree. The path may start and end at any node. -- Determine if a binary tree is a BST. -- Given a binary tree, serialize it into a string. Then deserialize it. -- Print a binary tree by column. -- Given a node, find the next element in a BST. -- Find the shortest subtree that consist of all the deepest nodes. The tree is not binary. -- Print out the sum of each row in a binary tree. -- Pretty print a JSON object. -- Convert a binary tree to a doubly circular linked list. -- Find the second largest number in a binary tree. -- Given a tree, find the longest branch. -- Convert a tree to a linked list. -- Given two trees, write code to find out if tree A is a subtree of tree B. -- Deepest node in a tree. - - [Source](http://blog.gainlo.co/index.php/2016/04/26/deepest-node-in-a-tree/) diff --git a/design/README.md b/design/README.md deleted file mode 100644 index 08004f550..000000000 --- a/design/README.md +++ /dev/null @@ -1,95 +0,0 @@ -Design Questions -== - -## Guides - -- [Grokking the System Design Interview](https://www.educative.io/collection/5668639101419520/5649050225344512) -- https://github.com/donnemartin/system-design-primer -- https://github.com/checkcheckzz/system-design-interview -- https://github.com/shashank88/system_design -- https://gist.github.com/vasanthk/485d1c25737e8e72759f -- http://www.puncsky.com/blog/2016/02/14/crack-the-system-design-interview/ -- https://www.palantir.com/2011/10/how-to-rock-a-systems-design-interview/ -- http://blog.gainlo.co/index.php/2017/04/13/system-design-interviews-part-ii-complete-guide-google-interview-preparation/ - -## Flow - -#### A. Understand the problem and scope - -- Define the use cases, with interviewer's help. -- Suggest additional features. -- Remove items that interviewer deems out of scope. -- Assume high availability is required, add as a use case. - -#### B. Think about constraints - -- Ask how many requests per month. -- Ask how many requests per second (they may volunteer it or make you do the math). -- Estimate reads vs. writes percentage. -- Keep 80/20 rule in mind when estimating. -- How much data written per second. -- Total storage required over 5 years. -- How much data reads per second. - -#### C. Abstract design - -- Layers (service, data, caching). -- Infrastructure: load balancing, messaging. -- Rough overview of any key algorithm that drives the service. -- Consider bottlenecks and determine solutions. - -Source: https://github.com/jwasham/coding-interview-university#system-design-scalability-data-handling - -## Grading Rubrics - -- Problem Solving - How systematic is your approach to solving the problem step-by-step? Break down a problem into its core components. -- Communication - How well do you explain your idea and communicate it with others? -- Evaluation - How do you evaluate your system? Are you aware of the trade-offs made? How can you optimize it? -- Estimation - How fast does your system need to be? How much space does it need? How much load will it experience? - -## Specific Topics - -- URL Shortener - - http://stackoverflow.com/questions/742013/how-to-code-a-url-shortener - - http://blog.gainlo.co/index.php/2016/03/08/system-design-interview-question-create-tinyurl-system/ - - https://www.interviewcake.com/question/python/url-shortener -- Collaborative Editor - - http://blog.gainlo.co/index.php/2016/03/22/system-design-interview-question-how-to-design-google-docs/ -- Photo Sharing App - - http://blog.gainlo.co/index.php/2016/03/01/system-design-interview-question-create-a-photo-sharing-app/ -- Social Network Feed - - http://blog.gainlo.co/index.php/2016/02/17/system-design-interview-question-how-to-design-twitter-part-1/ - - http://blog.gainlo.co/index.php/2016/02/24/system-design-interview-question-how-to-design-twitter-part-2/ - - http://blog.gainlo.co/index.php/2016/03/29/design-news-feed-system-part-1-system-design-interview-questions/ -- Trending Algorithm - - http://blog.gainlo.co/index.php/2016/05/03/how-to-design-a-trending-algorithm-for-twitter/ -- Facebook Chat - - http://blog.gainlo.co/index.php/2016/04/19/design-facebook-chat-function/ -- Key Value Store - - http://blog.gainlo.co/index.php/2016/06/14/design-a-key-value-store-part-i/ - - http://blog.gainlo.co/index.php/2016/06/21/design-key-value-store-part-ii/ -- Recommendation System - - http://blog.gainlo.co/index.php/2016/05/24/design-a-recommendation-system/ -- Cache System - - http://blog.gainlo.co/index.php/2016/05/17/design-a-cache-system/ -- E-commerce Website - - http://blog.gainlo.co/index.php/2016/08/22/design-ecommerce-website-part/ - - http://blog.gainlo.co/index.php/2016/08/28/design-ecommerce-website-part-ii/ -- Web Crawler - - http://blog.gainlo.co/index.php/2016/06/29/build-web-crawler/ - - http://www.makeuseof.com/tag/how-do-search-engines-work-makeuseof-explains/ - - https://www.quora.com/How-can-I-build-a-web-crawler-from-scratch/answer/Chris-Heller -- YouTube - - http://blog.gainlo.co/index.php/2016/10/22/design-youtube-part/ - - http://blog.gainlo.co/index.php/2016/11/04/design-youtube-part-ii/ -- Hit Counter - - http://blog.gainlo.co/index.php/2016/09/12/dropbox-interview-design-hit-counter/ -- Facebook Graph Search -- Design [Lyft Line](https://www.lyft.com/line). -- Design a promo code system (with same promo code, randomly generated promo code, and promo code with conditions). -- Model a university. -- How would you implement Pacman? -- Sketch out an implementation of Asteroids. -- Implement a spell checker. -- Design the rubik cube. -- Design a high-level interface to be used for card games (e.g. poker, blackjack etc). diff --git a/design/collaborative-editor.md b/design/collaborative-editor.md deleted file mode 100644 index 2f9427c14..000000000 --- a/design/collaborative-editor.md +++ /dev/null @@ -1,108 +0,0 @@ -Collaborative Document Editor -== - -## Variants - -- Design Google docs. -- Design a collaborative code editor like Coderpad/Codepile. -- Design a collaborative markdown editor. - -## Requirements Gathering - -- What is the intended platform? - - Web -- What features are required? - - Creating a document - - Editing a document - - Sharing a document -- Bonus features - - Document revisions and reverting - - Searching - - Commenting - - Chatting - - Executing code (in the case of code editor) -- What is in a document? - - Text - - Images -- Which metrics should we optimize for? - - Loading time - - Synchronization - - Throughput - -## Core Components - -- Front end - - WebSockets/long polling for real-time communication between front end and back end. -- Back end services behind a reverse proxy. - - Reverse proxy will proxy the requests to the right server. - - Split into a few services for different purposes. - - The benefit of this is that each service can use different languages that best suits its purpose. -- API servers for non-collaborative features and endpoints. - - Ruby/Rails/Django for the server that deals with CRUD operations on data models where performance is not that crucial. -- WebSocket servers for handling document edits and publishing updates to listeners. - - Possibly Node/Golang for WebSocket server which will need high performance as updates are frequent. -- Task queue to persist document updates to the database. -- ELB in front of back end servers. -- MySQL database. -- S3 and CDN for images. - -## Data Modeling - -- What kind of database to use? - - Data is quite structured. Would go with SQL. -- Design the necessary tables, its columns and its relations. - - `users` - - `id` - - `name` - - `document` - - `id` - - `owner_id` - - `permissions` - - `id` - - `name` - - `document_permissions` - - `id` - - `document_id` - - `user_id` - -## Collaborative Editing - Client - -- Upon loading of the page and document, the client should connect to the WebSocket server over the WebSocket protocol `ws://`. -- Upon connection, perform a time sync with the server, possibly via Network Time Protocol (NTP). -- The most straightforward way is to send the whole updated document content to the back end, and all users currently viewing the document will receive the updated document. However, there are a few problems with this approach: - - Race condition. If two users editing the document at the same time, the last one to edit will overwrite the changes by the previous user. One workaround is to lock the document when a user is currently editing it, but that will not make it real-time collaborative. - - A large payload (the whole document) is being sent to servers and published to users on each change, and the user is likely to already have most of the content. A lot of redundant data being sent. -- A feasible approach would be to use operational transforms and send just the action deltas to the back end. The back end publishes the action deltas to the listeners. What is considered an action delta? - - (a) Changing a character/word, (b) inserting a character/word/image, (c) deleting a character/word. - - With this approach, the payload will contain only small amount of data, such as (a) type of change, (b) character/word, (c) position in document: line/column, (d) timestamp. Why is the timestamp needed? Read on to find out. -- Updates can also be throttled and batched, to avoid flooding the web server with requests. For example, if a user inserts a - -## Back End - -The back end is split into a few portions: WebSocket server for receiving and broadcasting document updates, CRUD server for reading and writing non-document-related data, and a task queue for persistence of the document. - -## WebSocket Server - -- Languages and frameworks that support async requests and non-blocking I/O will be suitable for the collaborative editor server. Node and Golang comes to my mind. -- However, the WebSocket server is not stateless, so is it not that straightforward to scale horizontally. One approach would be for a Load Balancer to use Redis to maintain a map of the client to the WebSocket server instance IP, such that subsequent requests from the same client will be routed to the same server. -- Each document corresponds to a room (more of namespace). Users can subscribe to the events happening within a room. -- When a action delta is being received, blast it out to the listeners within the room and add it to the task queue. - -## CRUD Server - -- Provides APIs for reading and writing non-document-related data, such as users, permissions. - -## Task Queue + Worker Service - -- Worker service retrieves messages from the task queue and writes the updated documents to the database in an async fashion. -- Batch the actions together and perform one larger write that consists of multiple actions. For example, instead of persisting to the database once per addition of a word, combine these additions and write them into the database at once. -- Publish the save completion event to the WebSocket server to be published to the listeners, informing that the latest version of the document is being saved. -- Benefit of using a task queue is that as the amount of tasks in the queue goes up, we can scale up the number of worker services to clear the backlog of work faster. - -## Document Persistence - -TODO - -###### References - -- http://blog.gainlo.co/index.php/2016/03/22/system-design-interview-question-how-to-design-google-docs/ diff --git a/design/news-feed.md b/design/news-feed.md deleted file mode 100644 index 8dccbfd29..000000000 --- a/design/news-feed.md +++ /dev/null @@ -1,164 +0,0 @@ -News Feed -== - -## Variants - -- Design Facebook news feed. -- Design Twitter news feed. -- Design Quora feed. -- Design Instagram feed. - -## Requirements Gathering - -- What is the intended platform? - - Mobile (mobile web or native)? Web? Desktop? -- What features are required? - - CRUD posts. - - Commenting on posts. - - Sharing posts. - - Trending posts? - - Tag people? - - Hashtags? -- What is in a news feed post? - - Author. - - Content. - - Media. - - Tags? - - Hashtags? - - Comments/Replies. - - Operations: - - CRUD - - Commenting/replying to a post. -- What is in a news feed? - - Sequence of posts. - - Query pattern: query for a user's ranked news feed. - - Operations: - - Append - Fetch more posts. - - Delete - I don't want to see this. -- Which metrics should we optimize for? - - User retention. - - Ads revenue. - - Fast loading time. - - Bandwidth. - - Server costs. - -## Core Components - -TODO - -## Data modeling - -- What kind of database to use? - - Data is quite structured. Would go with SQL. -- Design the necessary tables, its columns and its relations. - - `users` - - `posts` - - `likes` - - `follows` - - `comments` - -> There are two basic objects: user and feed. For user object, we can store userID, name, registration date and so on so forth. And for feed object, there are feedId, feedType, content, metadata etc., which should support images and videos as well. -> -> If we are using a relational database, we also need to model two relations: user-feed relation and friend relation. The former is pretty straightforward. We can create a user-feed table that stores userID and corresponding feedID. For a single user, it can contain multiple entries if he has published many feeds. -> -> For friend relation, adjacency list is one of the most common approaches. If we see all the users as nodes in a giant graph, edges that connect nodes denote friend relation. We can use a friend table that contains two userIDs in each entry to model the edge (friend relation). By doing this, most operations are quite convenient like fetch all friends of a user, check if two people are friends. -> -> The system will first get all userIDs of friends from friend table. Then it fetches all feedIDs for each friend from user-feed table. Finally, feed content is fetched based on feedID from feed table. You can see that we need to perform 3 joins, which can affect performance. -> -> A common optimization is to store feed content together with feedID in user-feed table so that we don't need to join the feed table any more. This approach is called denormalization, which means by adding redundant data, we can optimize the read performance (reducing the number of joins). -> -> The disadvantages are obvious: -> - Data redundancy. We are storing redundant data, which occupies storage space (classic time-space trade-off). -> - Data consistency. Whenever we update a feed, we need to update both feed table and user-feed table. Otherwise, there is data inconsistency. This increases the complexity of the system. -> - Remember that there's no one approach always better than the other (normalization vs denormalization). It's a matter of whether you want to optimize for read or write. - -## Feed Display - -- The most straightforward way is to fetch posts from all the people you follow and render them sorted by time. -- There can be many posts to fetch. How many posts should you fetch? - - What are the pagination approaches and the pros and cons of each approach? - - Offset by page size - - Offset by time -- What data should the post contain when you initially fetch them? -- Lazy loading approach for loading associated data: media, comments, people who liked the post. -- Media - - If the post contains media such as images and videos, how should they be handled? Should they be loaded on the spot? - - A better way would be to fetch images only when they are about to enter the viewport. - - Videos should not autoplay. Only fetch the thumbnail for the video, and only play the video when user clicks play. - - If the content is being refetched, the media should be cached and not fetched over the wire again. This is especially important on mobile connections where data can be expensive. -- Comments - - Should you fetch all the comments for a post? For posts by celebrities, they can contain a few hundred or thousand comments. - - Maybe fetch the top few comments and display them under the post, and the user is given the choice to "show all comments". -- How does the user request for new content? - - Infinite scrolling. - - User has to tap next page. - -## Feed Ranking - -- First select features/signals that are relevant and then figure out how to combine them to calculate a final score. -- How do you show the relevant posts that the user is interested in? - - Chronological - While a chronological approach works, it may not be the most engaging approach. For example, if a person posts 30 times within the last hour, his followers will have their news feed clogged up with his posts. Maybe set a cap on the number of time a person's posts can appear within the feed. - - Popularity - How many likes and comments does the post have? Does the user usually like posts by that person? -- How do you determine which are the more important posts? A user might be more interested in a few-hour old post from a good friend than a very recent post from an acquaintance. -- A common strategy is to calculate a post score based on various features and rank posts by its score. -- Prior to 2013, Facebook was using the [EdgeRank](https://www.wikiwand.com/en/EdgeRank) algorithm to determine what articles should be displayed in a user's News Feed. -- Edge Rank basically is using three signals: affinity score, edge weight and time decay. - - Affinity score (u) - For each news feed, affinity score evaluates how close you are with this user. For instance, you are more likely to care about feed from your close friends instead of someone you just met once. - - Edge weight (e) - Edge weight basically reflects importance of each edge. For instance, comments are worth more than likes. - - Time decay (d) - The older the story, the less likely users find it interesting. -- Affinity score - - Various factors can be used to reflect how close two people are. First of all, explicit interactions like comment, like, tag, share, click etc. are strong signals we should use. Apparently, each type of interaction should have different weight. For instance, comments should be worth much more than likes. - - Secondly, we should also track the time factor. Perhaps you used to interact with a friend quite a lot, but less frequent recently. In this case, we should lower the affinity score. So for each interaction, we should also put the time decay factor. -- A good ranking system can improve some core metrics - user retention, ads revenue, etc. - -## Feed Publishing - -TODO. Refer to http://blog.gainlo.co/index.php/2016/04/05/design-news-feed-system-part-2/. - -## Additional Features - -#### Tagging feature - -- Have a `tags` table that stores the relation between a post and the people tagged in it. - -#### Sharing feature - -- Add a column to `posts` table called `original_post_id`. -- What should happen when the original post is deleted? - - The shared `posts` have to be deleted too. - -#### Notifications feature - -- When should notifications happen? -- Can the user subscribe to only certain types of notifications? - -#### Trending feature - -- What constitutes trending? What signals would you look at? What weight would you give to each signal? -- Most frequent hashtags over the last N hours. -- Hottest search queries. -- Fetch the recent most popular feeds and extract some common words or phrases. - -#### Search feature - -- How would you index the data? - -## Scalability - -- Master-slave replication. - - Write to master database and read from replica databases/in-memory data store. - - Post contents are being read more than they are updated. It is acceptable to have a slight lag between a user updating a post and followers seeing the updated content. Tweets are not even editable. -- Data for real-time queries should be in memory, disk is for writes only. -- Pre-computation offline. -- Tracking number of likes and comments. - - Expensive to do a `COUNT` on the `likes` and `comments` for a post. - - Use Redis/Memcached for keeping track of how many likes/comments a post has. Increment when there's new activity, decrement when someone unlikes/deletes the comment. -- Load balancer in front of your API servers. -- Partitioning the data. - -###### References - -- [Design News Feed System (Part 1)](http://blog.gainlo.co/index.php/2016/03/29/design-news-feed-system-part-1-system-design-interview-questions/) -- [Design News Feed System (Part 1)](http://blog.gainlo.co/index.php/2016/04/05/design-news-feed-system-part-2/) -- [Etsy Activity Feeds Architecture](https://www.slideshare.net/danmckinley/etsy-activity-feeds-architecture) -- [Big Data in Real-Time at Twitter](https://www.slideshare.net/nkallen/q-con-3770885) diff --git a/design/search-engine.md b/design/search-engine.md deleted file mode 100644 index 4703313bb..000000000 --- a/design/search-engine.md +++ /dev/null @@ -1,6 +0,0 @@ -Search Engine -== - -###### References - -- [How Do Search Engines Work?](http://www.makeuseof.com/tag/how-do-search-engines-work-makeuseof-explains/) diff --git a/domain/async-loading/index.html b/domain/async-loading/index.html deleted file mode 100644 index d422c0c6e..000000000 --- a/domain/async-loading/index.html +++ /dev/null @@ -1,61 +0,0 @@ - - - - - -
-
-
-
- - - diff --git a/domain/databases.md b/domain/databases.md deleted file mode 100644 index 80b172576..000000000 --- a/domain/databases.md +++ /dev/null @@ -1,8 +0,0 @@ -Databases -== - -## General - -- How should you store passwords in a database? - - http://www.geeksforgeeks.org/store-password-database/ - - https://nakedsecurity.sophos.com/2013/11/20/serious-security-how-to-store-your-users-passwords-safely/ diff --git a/domain/networking.md b/domain/networking.md deleted file mode 100644 index cc56fc9d7..000000000 --- a/domain/networking.md +++ /dev/null @@ -1,6 +0,0 @@ -Networking -== - -- Given an IPv4 IP address p and an integer n, return a list of CIDR strings that most succinctly represents the range of IP addresses from p to (p + n). -- Describe what happens when you enter a url in the web browser. -- Define UDP/TCP and give an example of both. diff --git a/domain/pagination-sorting/data.js b/domain/pagination-sorting/data.js deleted file mode 100644 index 6001ce83a..000000000 --- a/domain/pagination-sorting/data.js +++ /dev/null @@ -1,677 +0,0 @@ -const data = [ - { - "_id": "591ad7e2d1b6119887420af5", - "age": 36, - "name": "Salas Mccarthy", - "gender": "male", - "company": "MAKINGWAY", - "email": "salasmccarthy@makingway.com", - "phone": "+1 (905) 546-3931" - }, - { - "_id": "591ad7e2918b0ba1231b582d", - "age": 29, - "name": "Jodi Graham", - "gender": "female", - "company": "BITREX", - "email": "jodigraham@bitrex.com", - "phone": "+1 (861) 596-2691" - }, - { - "_id": "591ad7e2bc19d181dcb64d57", - "age": 34, - "name": "Hollie Hardin", - "gender": "female", - "company": "ZENSURE", - "email": "holliehardin@zensure.com", - "phone": "+1 (822) 410-2433" - }, - { - "_id": "591ad7e224d2fa7216132561", - "age": 26, - "name": "Bullock Cole", - "gender": "male", - "company": "ZILPHUR", - "email": "bullockcole@zilphur.com", - "phone": "+1 (839) 563-3350" - }, - { - "_id": "591ad7e206c3fb3043ccf8a8", - "age": 30, - "name": "Peterson Mosley", - "gender": "male", - "company": "MOBILDATA", - "email": "petersonmosley@mobildata.com", - "phone": "+1 (974) 547-3461" - }, - { - "_id": "591ad7e20a180de908b0960e", - "age": 34, - "name": "Lucille Jackson", - "gender": "female", - "company": "KINETICUT", - "email": "lucillejackson@kineticut.com", - "phone": "+1 (845) 443-3594" - }, - { - "_id": "591ad7e2768b0cf4837ecf35", - "age": 40, - "name": "Cooper Leonard", - "gender": "male", - "company": "CHORIZON", - "email": "cooperleonard@chorizon.com", - "phone": "+1 (817) 418-2290" - }, - { - "_id": "591ad7e270a640cf8f8a3e44", - "age": 27, - "name": "Iris Shepherd", - "gender": "female", - "company": "IDEALIS", - "email": "irisshepherd@idealis.com", - "phone": "+1 (858) 599-3628" - }, - { - "_id": "591ad7e222ddd244aaba0315", - "age": 31, - "name": "Oneil Head", - "gender": "male", - "company": "LIMOZEN", - "email": "oneilhead@limozen.com", - "phone": "+1 (894) 440-3396" - }, - { - "_id": "591ad7e2d36847b5e648587b", - "age": 28, - "name": "Swanson Singleton", - "gender": "male", - "company": "NSPIRE", - "email": "swansonsingleton@nspire.com", - "phone": "+1 (817) 510-2480" - }, - { - "_id": "591ad7e2b78092f9fb866779", - "age": 37, - "name": "Sutton Odom", - "gender": "male", - "company": "GLUKGLUK", - "email": "suttonodom@glukgluk.com", - "phone": "+1 (961) 424-2812" - }, - { - "_id": "591ad7e222736aa66a9b35cc", - "age": 31, - "name": "Chandler Kirk", - "gender": "male", - "company": "EWAVES", - "email": "chandlerkirk@ewaves.com", - "phone": "+1 (902) 524-3712" - }, - { - "_id": "591ad7e2ac3f9abecd5175a7", - "age": 28, - "name": "Gentry Stanley", - "gender": "male", - "company": "GINK", - "email": "gentrystanley@gink.com", - "phone": "+1 (878) 592-2331" - }, - { - "_id": "591ad7e2f79787dc605d61fb", - "age": 28, - "name": "Paulette Guthrie", - "gender": "female", - "company": "SEQUITUR", - "email": "pauletteguthrie@sequitur.com", - "phone": "+1 (820) 473-2926" - }, - { - "_id": "591ad7e2ff61553783737bc0", - "age": 37, - "name": "Lesley Nash", - "gender": "female", - "company": "MELBACOR", - "email": "lesleynash@melbacor.com", - "phone": "+1 (849) 414-2115" - }, - { - "_id": "591ad7e26f9c3fc95fa8e6f1", - "age": 22, - "name": "Frye Oneil", - "gender": "male", - "company": "OVERPLEX", - "email": "fryeoneil@overplex.com", - "phone": "+1 (999) 412-2403" - }, - { - "_id": "591ad7e2eee8b7cd857a29d0", - "age": 40, - "name": "Christina Zamora", - "gender": "female", - "company": "REPETWIRE", - "email": "christinazamora@repetwire.com", - "phone": "+1 (860) 504-3885" - }, - { - "_id": "591ad7e2be93544c81761053", - "age": 25, - "name": "Earlene Dunn", - "gender": "female", - "company": "PHARMEX", - "email": "earlenedunn@pharmex.com", - "phone": "+1 (831) 582-2974" - }, - { - "_id": "591ad7e2cb672de927940ef4", - "age": 25, - "name": "Hoffman Pittman", - "gender": "male", - "company": "ENOMEN", - "email": "hoffmanpittman@enomen.com", - "phone": "+1 (882) 420-3186" - }, - { - "_id": "591ad7e2aabaae50d75c21a3", - "age": 35, - "name": "Wilson Tran", - "gender": "male", - "company": "CAXT", - "email": "wilsontran@caxt.com", - "phone": "+1 (842) 529-3085" - }, - { - "_id": "591ad7e2bdd6104be85bdd87", - "age": 22, - "name": "Hensley Hawkins", - "gender": "male", - "company": "LUDAK", - "email": "hensleyhawkins@ludak.com", - "phone": "+1 (902) 566-3308" - }, - { - "_id": "591ad7e24796cbdc0eacb6c0", - "age": 36, - "name": "Gray Schultz", - "gender": "male", - "company": "EBIDCO", - "email": "grayschultz@ebidco.com", - "phone": "+1 (910) 532-2845" - }, - { - "_id": "591ad7e204425cc3b121279a", - "age": 25, - "name": "Odonnell Livingston", - "gender": "male", - "company": "ANOCHA", - "email": "odonnelllivingston@anocha.com", - "phone": "+1 (991) 422-2754" - }, - { - "_id": "591ad7e2997ac59b446d3a30", - "age": 36, - "name": "Shelton Lindsay", - "gender": "male", - "company": "DENTREX", - "email": "sheltonlindsay@dentrex.com", - "phone": "+1 (899) 567-2928" - }, - { - "_id": "591ad7e2646dad2ff456b035", - "age": 40, - "name": "Mcclain Larson", - "gender": "male", - "company": "GENMOM", - "email": "mcclainlarson@genmom.com", - "phone": "+1 (934) 508-3477" - }, - { - "_id": "591ad7e21e908e847ee6d3ea", - "age": 27, - "name": "Miranda Branch", - "gender": "female", - "company": "ROCKYARD", - "email": "mirandabranch@rockyard.com", - "phone": "+1 (989) 446-2387" - }, - { - "_id": "591ad7e2d7905d2fcaa1ce18", - "age": 36, - "name": "Valencia Moreno", - "gender": "male", - "company": "KIOSK", - "email": "valenciamoreno@kiosk.com", - "phone": "+1 (807) 449-2626" - }, - { - "_id": "591ad7e245e3c4ce18a92054", - "age": 40, - "name": "Witt Leblanc", - "gender": "male", - "company": "ENERSAVE", - "email": "wittleblanc@enersave.com", - "phone": "+1 (809) 491-3886" - }, - { - "_id": "591ad7e27f2c70583d1cf34f", - "age": 32, - "name": "Glover Mccoy", - "gender": "male", - "company": "BYTREX", - "email": "glovermccoy@bytrex.com", - "phone": "+1 (928) 470-2426" - }, - { - "_id": "591ad7e22768012595c933c9", - "age": 25, - "name": "Billie Dunlap", - "gender": "female", - "company": "INQUALA", - "email": "billiedunlap@inquala.com", - "phone": "+1 (903) 415-2136" - }, - { - "_id": "591ad7e22df8d07559a29904", - "age": 21, - "name": "Bridget Hill", - "gender": "female", - "company": "TRIBALOG", - "email": "bridgethill@tribalog.com", - "phone": "+1 (954) 461-3390" - }, - { - "_id": "591ad7e201b2bddbc81ae05e", - "age": 30, - "name": "Dawson Clements", - "gender": "male", - "company": "EURON", - "email": "dawsonclements@euron.com", - "phone": "+1 (926) 570-3444" - }, - { - "_id": "591ad7e2c2aeb820e77c1d9a", - "age": 31, - "name": "Valdez Johnson", - "gender": "male", - "company": "RETRACK", - "email": "valdezjohnson@retrack.com", - "phone": "+1 (841) 506-2428" - }, - { - "_id": "591ad7e2370ff047048bd688", - "age": 31, - "name": "Nichole Dickerson", - "gender": "female", - "company": "NEOCENT", - "email": "nicholedickerson@neocent.com", - "phone": "+1 (945) 437-3591" - }, - { - "_id": "591ad7e2b77affba5a8f8603", - "age": 34, - "name": "Madden Weaver", - "gender": "male", - "company": "VERBUS", - "email": "maddenweaver@verbus.com", - "phone": "+1 (810) 598-3145" - }, - { - "_id": "591ad7e21e692cc8247b1d83", - "age": 26, - "name": "Larsen Benson", - "gender": "male", - "company": "ISOSURE", - "email": "larsenbenson@isosure.com", - "phone": "+1 (890) 435-2219" - }, - { - "_id": "591ad7e2de06284f2d2a8d19", - "age": 37, - "name": "Barnes Gaines", - "gender": "male", - "company": "RODEOCEAN", - "email": "barnesgaines@rodeocean.com", - "phone": "+1 (824) 484-2693" - }, - { - "_id": "591ad7e20d9d8224dfbd292f", - "age": 28, - "name": "Pacheco Landry", - "gender": "male", - "company": "METROZ", - "email": "pachecolandry@metroz.com", - "phone": "+1 (813) 525-3821" - }, - { - "_id": "591ad7e2c5348da6a981a148", - "age": 21, - "name": "Richard Alexander", - "gender": "male", - "company": "GADTRON", - "email": "richardalexander@gadtron.com", - "phone": "+1 (911) 513-3007" - }, - { - "_id": "591ad7e2ca9ef31ba3b67d4f", - "age": 22, - "name": "Stone Campos", - "gender": "male", - "company": "TETAK", - "email": "stonecampos@tetak.com", - "phone": "+1 (879) 440-3672" - }, - { - "_id": "591ad7e2ff5a9796c8470151", - "age": 31, - "name": "Walter Randall", - "gender": "male", - "company": "EQUITAX", - "email": "walterrandall@equitax.com", - "phone": "+1 (927) 563-3777" - }, - { - "_id": "591ad7e272c6b6c1241b3a4a", - "age": 27, - "name": "Copeland Compton", - "gender": "male", - "company": "MAXIMIND", - "email": "copelandcompton@maximind.com", - "phone": "+1 (829) 599-2574" - }, - { - "_id": "591ad7e2220c6caa9e2c444d", - "age": 30, - "name": "Lorie Irwin", - "gender": "female", - "company": "ELPRO", - "email": "lorieirwin@elpro.com", - "phone": "+1 (938) 584-2368" - }, - { - "_id": "591ad7e2942d603032f1ebda", - "age": 35, - "name": "Buck Roth", - "gender": "male", - "company": "COMTRACT", - "email": "buckroth@comtract.com", - "phone": "+1 (830) 585-3168" - }, - { - "_id": "591ad7e2c23efccd2fcd5b2e", - "age": 31, - "name": "Mamie Robinson", - "gender": "female", - "company": "ZOMBOID", - "email": "mamierobinson@zomboid.com", - "phone": "+1 (845) 481-3222" - }, - { - "_id": "591ad7e285109fadbf0f9c01", - "age": 33, - "name": "Bryan Stone", - "gender": "male", - "company": "PODUNK", - "email": "bryanstone@podunk.com", - "phone": "+1 (971) 469-3832" - }, - { - "_id": "591ad7e25abc328c2cc42283", - "age": 37, - "name": "Benson Lyons", - "gender": "male", - "company": "FUTURITY", - "email": "bensonlyons@futurity.com", - "phone": "+1 (964) 536-3522" - }, - { - "_id": "591ad7e28fa81611cdf5066a", - "age": 37, - "name": "Sally Finley", - "gender": "female", - "company": "ZYTRAC", - "email": "sallyfinley@zytrac.com", - "phone": "+1 (953) 506-2428" - }, - { - "_id": "591ad7e271c5882aa5452601", - "age": 26, - "name": "Callahan Mckee", - "gender": "male", - "company": "ACCUPRINT", - "email": "callahanmckee@accuprint.com", - "phone": "+1 (842) 400-3570" - }, - { - "_id": "591ad7e2275e787c5d9eea26", - "age": 25, - "name": "Ines Hamilton", - "gender": "female", - "company": "PROSURE", - "email": "ineshamilton@prosure.com", - "phone": "+1 (976) 485-2663" - }, - { - "_id": "591ad7e2d8790e386b671ec6", - "age": 38, - "name": "Mcknight Abbott", - "gender": "male", - "company": "MAXEMIA", - "email": "mcknightabbott@maxemia.com", - "phone": "+1 (960) 600-3920" - }, - { - "_id": "591ad7e2a1cae1e4f17d8db2", - "age": 28, - "name": "Tanisha Ross", - "gender": "female", - "company": "SYNKGEN", - "email": "tanishaross@synkgen.com", - "phone": "+1 (920) 502-3204" - }, - { - "_id": "591ad7e2f816fd6848bc03a3", - "age": 22, - "name": "Pam Webb", - "gender": "female", - "company": "VALREDA", - "email": "pamwebb@valreda.com", - "phone": "+1 (926) 442-2683" - }, - { - "_id": "591ad7e208585adb332ac653", - "age": 29, - "name": "Bobbi Mays", - "gender": "female", - "company": "PARLEYNET", - "email": "bobbimays@parleynet.com", - "phone": "+1 (940) 577-3487" - }, - { - "_id": "591ad7e2f4b29cbd1744b14e", - "age": 27, - "name": "Snider Sandoval", - "gender": "male", - "company": "GRONK", - "email": "snidersandoval@gronk.com", - "phone": "+1 (903) 526-2655" - }, - { - "_id": "591ad7e23a3f54209ec9deba", - "age": 33, - "name": "Fitzpatrick Weiss", - "gender": "male", - "company": "MICROLUXE", - "email": "fitzpatrickweiss@microluxe.com", - "phone": "+1 (894) 494-2135" - }, - { - "_id": "591ad7e229d21e1b7723c044", - "age": 27, - "name": "Kimberly Brown", - "gender": "female", - "company": "SPACEWAX", - "email": "kimberlybrown@spacewax.com", - "phone": "+1 (832) 481-2926" - }, - { - "_id": "591ad7e247e285f0c563ac94", - "age": 20, - "name": "Fisher Kent", - "gender": "male", - "company": "ORBIN", - "email": "fisherkent@orbin.com", - "phone": "+1 (962) 523-3956" - }, - { - "_id": "591ad7e274439c6eb52e99df", - "age": 26, - "name": "Arlene Carroll", - "gender": "female", - "company": "ELITA", - "email": "arlenecarroll@elita.com", - "phone": "+1 (998) 497-3751" - }, - { - "_id": "591ad7e271852e5766fad809", - "age": 22, - "name": "Tamra Spence", - "gender": "female", - "company": "ARTWORLDS", - "email": "tamraspence@artworlds.com", - "phone": "+1 (963) 516-2492" - }, - { - "_id": "591ad7e28c9165c4372744f7", - "age": 29, - "name": "Alice Goodman", - "gender": "female", - "company": "ZILLIDIUM", - "email": "alicegoodman@zillidium.com", - "phone": "+1 (829) 577-2972" - }, - { - "_id": "591ad7e2c2a9121f713f15c3", - "age": 27, - "name": "Clay Washington", - "gender": "male", - "company": "EXOSTREAM", - "email": "claywashington@exostream.com", - "phone": "+1 (926) 460-3699" - }, - { - "_id": "591ad7e2c99d41ce0347ac8f", - "age": 38, - "name": "Navarro Walsh", - "gender": "male", - "company": "ILLUMITY", - "email": "navarrowalsh@illumity.com", - "phone": "+1 (896) 564-3270" - }, - { - "_id": "591ad7e25e7c6ff0785d1337", - "age": 22, - "name": "Alexandra Hughes", - "gender": "female", - "company": "TASMANIA", - "email": "alexandrahughes@tasmania.com", - "phone": "+1 (977) 509-3599" - }, - { - "_id": "591ad7e2acb8a5785b6fd512", - "age": 40, - "name": "Vonda Oliver", - "gender": "female", - "company": "NEPTIDE", - "email": "vondaoliver@neptide.com", - "phone": "+1 (836) 595-2260" - }, - { - "_id": "591ad7e20543a9fc7bc33515", - "age": 36, - "name": "Christa Nixon", - "gender": "female", - "company": "GLASSTEP", - "email": "christanixon@glasstep.com", - "phone": "+1 (966) 551-2149" - }, - { - "_id": "591ad7e21b8e73ba4dbf7c9a", - "age": 34, - "name": "Weber Hurst", - "gender": "male", - "company": "SLUMBERIA", - "email": "weberhurst@slumberia.com", - "phone": "+1 (943) 516-3449" - }, - { - "_id": "591ad7e282b9cb56357b42db", - "age": 27, - "name": "Rasmussen Kramer", - "gender": "male", - "company": "MUSIX", - "email": "rasmussenkramer@musix.com", - "phone": "+1 (891) 553-3264" - }, - { - "_id": "591ad7e2287c587e3a04e80c", - "age": 30, - "name": "Mayra Beasley", - "gender": "female", - "company": "BRAINCLIP", - "email": "mayrabeasley@brainclip.com", - "phone": "+1 (958) 576-2642" - }, - { - "_id": "591ad7e26245135989367fa8", - "age": 20, - "name": "Nunez Ortiz", - "gender": "male", - "company": "KYAGURU", - "email": "nunezortiz@kyaguru.com", - "phone": "+1 (906) 591-3563" - }, - { - "_id": "591ad7e23248cee3b84bde40", - "age": 39, - "name": "Michael Foreman", - "gender": "male", - "company": "DANCITY", - "email": "michaelforeman@dancity.com", - "phone": "+1 (848) 400-3539" - }, - { - "_id": "591ad7e23ae236a1d59d07ee", - "age": 36, - "name": "Virgie Wheeler", - "gender": "female", - "company": "XIIX", - "email": "virgiewheeler@xiix.com", - "phone": "+1 (831) 400-2814" - }, - { - "_id": "591ad7e2d8b9e3c0c31d770d", - "age": 31, - "name": "Levy Hoover", - "gender": "male", - "company": "CANDECOR", - "email": "levyhoover@candecor.com", - "phone": "+1 (843) 428-2780" - }, - { - "_id": "591ad7e2badb7200ca06a483", - "age": 21, - "name": "Battle Stanton", - "gender": "male", - "company": "CALCULA", - "email": "battlestanton@calcula.com", - "phone": "+1 (861) 522-3951" - }, - { - "_id": "591ad7e27fd1a4455ccf406c", - "age": 24, - "name": "Church Lynn", - "gender": "male", - "company": "DAISU", - "email": "churchlynn@daisu.com", - "phone": "+1 (896) 425-3854" - } -] diff --git a/domain/pagination-sorting/index.html b/domain/pagination-sorting/index.html deleted file mode 100644 index 09e61f4d9..000000000 --- a/domain/pagination-sorting/index.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - -

People

- - - - - - - - -
NameAgeEmail
- - Page / - - - - - - diff --git a/domain/security.md b/domain/security.md deleted file mode 100644 index 1c5216ae0..000000000 --- a/domain/security.md +++ /dev/null @@ -1,67 +0,0 @@ -Security -== - -## Encryption - -#### Symmetrical Encryption - -- Symmetrical encryption is a type of encryption where one key can be used to encrypt messages and also decrypt the same message. -- Symmetrical encryption is usually much less computationally expensive as compared to asymmetric encryption. -- Often called "shared secret" encryption, or "secret key" encryption. -- To use a symmetric encryption scheme, the sender and receiver must securely share a key in advance. This sharing can be done via asymmetric encryption. - -#### Asymmetric Encryption - -- A pair of keys are required: a **private key** and a **public key**. Public keys can be shared with anyone while private keys should be kept secret and known only to the owner. -- A private key can be used to decrypt a message encrypted by a public key. A successful decryption verifies that the holder possesses the private key. -- Also known as public key cryptography. - -## Public Key Infrastructure - -A public key infrastructure (PKI) is a system for the creation, storage, and distribution of digital certificates which are used to verify that a particular public key belongs to a certain entity. The PKI creates digital certificates which map public keys to entities, securely stores these certificates in a central repository and revokes them if needed. - -###### References - -- https://www.wikiwand.com/en/Public_key_infrastructure - -## SSH - -An SSH session consists of two stages, **Negotiating Encryption** and **User Authentication**. - -#### Negotiating Encryption - -The goal of this stage is for the client and server to agree upon and establish encryption to protect future communication, by generating an identical session key. One possible algorithm to generate the key is the Diffie–Hellman key exchange scheme. Each party generates a public/private key pair and exchanges the public key. After obtaining an authentic copy of each other's public keys, each party can compute a shared secret offline. - -The basis of this procedure for classic Diffie-Hellman is: - -1. Both parties agree on a large prime number, which will serve as a seed value. -1. Both parties agree on an encryption generator (typically AES), which will be used to manipulate the values in a predefined way. -1. Independently, each party comes up with another prime number which is kept secret from the other party. This number is used as the private key for this interaction (different than the private SSH key used for authentication). -1. The generated private key, the encryption generator, and the shared prime number are used to generate a public key that is derived from the private key, but which can be shared with the other party. -1. Both participants then exchange their generated public keys. -1. The receiving entity uses their own private key, the other party's public key, and the original shared prime number to compute a shared secret key. -1. Although this is independently computed by each party, using opposite private and public keys, it will result in the same shared secret key. -1. The shared secret is then used to encrypt all communication that follows. - -The purpose of the shared secret key is to wrap all further communication in an encrypted tunnel that cannot be deciphered by outsiders. - -#### User Authentication - -The goal of this stage is to authenticate the user and discover whether access to the server should be granted. There are two approaches for authenticating, either by using passwords, or SSH key pairs. - -For password authentication, the server simply prompts the client for the password of the account they are attempting to login with. The password is sent through the negotiated encryption, so it is secure from outside parties. - -Authentication using SSH key pairs begins after the symmetric encryption has been established as described in the last section. The procedure happens like this: - -1. The client begins by sending an ID for the key pair it would like to authenticate with to the server. -1. The server check's the `authorized_keys` file of the account that the client is attempting to log into for the key ID. -1. If a public key with matching ID is found in the file, the server generates a random number and uses the public key to encrypt the number. -1. The server sends the client this encrypted message. -1. If the client actually has the associated private key, it will be able to decrypt the message using that key, revealing the original number. -1. The client combines the decrypted number with the shared session key that is being used to encrypt the communication, and calculates the MD5 hash of this value. -1. The client then sends this MD5 hash back to the server as an answer to the encrypted number message. -1. The server uses the same shared session key and the original number that it sent to the client to calculate the MD5 value on its own. It compares its own calculation to the one that the client sent back. If these two values match, it proves that the client was in possession of the private key and the client is authenticated. - -###### References - -- https://www.digitalocean.com/community/tutorials/understanding-the-ssh-encryption-and-connection-process diff --git a/domain/snake-game/snake-game.md b/domain/snake-game/snake-game.md deleted file mode 100644 index 6f7f1fc45..000000000 --- a/domain/snake-game/snake-game.md +++ /dev/null @@ -1,77 +0,0 @@ -Snake Game -== - -Design a snake game that is to be played in web browser. - -Client: React + Redux - -Rendering: -Pixel-based graphics. Depending on the intended resolution, can divide the screen into N * M pixels. Can dynamically calculate the size of each pixel. - -Fruit: One pixel. -Snake body: One pixel width made up of connected pixels. - -Model: -{ - fruit: { - x, y - }, - snake: { - points: [(x, y), ...] # head is at index 0 - direction: north/south/east/west - } - speed: 500, - points: 0 -} - -function update() { - next_loc = points[0] + (x, y) # Depends on the direction - if (snake.points.find(next_loc) > 0) { - // die - } - let pts = snake.points; - if (!isEqual(next_loc, fruit)) { - pts = points.removeLast(); - } else { - generate_fruit(); - points++; - } - snake.points = [next_loc, ...pts]; - - // Boundary checking -> die -} - -function generate_fruit() { - // Cannot generate on my own body. - - // First approach: while on body, generate - let next_fruit_location = random_location(); - while (snake.points.find(next_fruit_location) > 0) { - next_fruit_location = random_location(); - } - fruit = next_fruit_location - - // Second approach: brute force - for (let i = 0; i < rows; i++) { - for (let j = 0; j < cols; j++) { - let point = { x: i, y: j } - if (snake.points.find(next_fruit_location) === -1) { - fruit = point - } - } - } - - // Third approach: brute force with random - const available_points = [] - for (let i = 0; i < rows; i++) { - for (let j = 0; j < cols; j++) { - let point = { x: i, y: j } - if (snake.points.find(next_fruit_location) === -1) { - available_points.push(point); - } - } - } - fruit = _.sample(available_points); -} - -setInterval(update, speed); diff --git a/domain/software-engineering.md b/domain/software-engineering.md deleted file mode 100644 index dfb3251cd..000000000 --- a/domain/software-engineering.md +++ /dev/null @@ -1,22 +0,0 @@ -Software Engineering -== - -## What is the difference between an interface and abstract class? - -**Abstract Class** - -- For an abstract class, a method must be declared as abstract. An abstract method doesn't have an implementation. -- The Abstract methods can be declared with Access modifiers like public, internal, protected, etc. When implementing these methods in a subclass, you must define them with the same (or a less restricted) visibility. -- Abstract classes can contain variables and concrete methods. -- A class can Inherit only one Abstract class. Hence multiple inheritance is not possible for an Abstract class. -- Abstract is object-oriented. It offers the basic data an 'object' should have and/or functions it should be able to do. It is concerned with the object's basic characteristics: what it has and what it can do. Hence objects which inherit from the same abstract class share the basic characteristics (generalization). -- Abstract class establishes "is a" relation with concrete classes. - -**Interface** - -- For an interface, all the methods are abstract by default. So one cannot declare variables or concrete methods in interfaces. -- All methods declared in an interface must be public. -- Interfaces cannot contain variables and concrete methods except constants. -- A class can implement many interfaces. Hence multiple interface inheritance is possible. -- Interface is functionality-oriented. It defines functionalities an object should have. Regardless what object it is, as long as it can do these functionalities, which are defined in the interface, it's fine. It ignores everything else. An object/class can contain several (groups of) functionalities; hence it is possible for a class to implement multiple interfaces. -- Interface provides "has a" capability for classes. diff --git a/domain/tic-tac-toe/index.html b/domain/tic-tac-toe/index.html deleted file mode 100644 index ade23e181..000000000 --- a/domain/tic-tac-toe/index.html +++ /dev/null @@ -1,178 +0,0 @@ - - - - - -

Tic Tac Toe

-

Current player turn:

-
- - - - diff --git a/front-end/interview-questions.md b/front-end/interview-questions.md deleted file mode 100644 index ad68ee0ec..000000000 --- a/front-end/interview-questions.md +++ /dev/null @@ -1,1305 +0,0 @@ -Front-end Job Interview Questions -== - -Unlike typical software engineer job interviews, front-end job interviews have less emphasis on algorithms and have more questions on intricate knowledge and expertise about the domain — HTML, CSS, JavaScript, just to name a few areas. - -While there are some existing resources to help front end developers in preparing for interviews, they aren't as abundant as materials for a software engineer interview. Among the existing resources, probably the most helpful question bank would be [Front-end Job Interview Questions](https://github.com/h5bp/Front-end-Developer-Interview-Questions). Unfortunately, I couldn't find many complete and satisfactory answers for these questions online, hence here is my attempt at answering them. Being an open source repository, the project can live on with the support of the community as the state of web evolves. - -## Table of Contents - - 1. [HTML Questions](#html-questions) - 1. [CSS Questions](#css-questions) - 1. [JS Questions](#js-questions) - -## HTML Questions - -Answers to [Front-end Job Interview Questions - HTML Questions](https://github.com/h5bp/Front-end-Developer-Interview-Questions#html-questions). Pull requests for suggestions and corrections are welcome! - -### What does a `doctype` do? - -`doctype` is an abbreviation for document type. It is a declaration used in HTML5 to distinguish between a standards-compliant parsing mode and a quirks parsing mode. Hence its presence tells the browser to parse and render the webpage in standards mode. - -Moral of the story - just add `` at the start of your page. - -###### References - -- https://stackoverflow.com/questions/7695044/what-does-doctype-html-do -- https://www.w3.org/QA/Tips/Doctype - -### What's the difference between full standards mode, almost standards mode and quirks mode? - -- **Quirks mode** - Layout emulates non-standard behavior in Netscape Navigator 4 and Internet Explorer 5. This is essential in order to support websites that were built before the widespread adoption of web standards. The list of quirks can be found [here](https://developer.mozilla.org/en-US/docs/Mozilla/Mozilla_quirks_mode_behavior). -- **Full standards mode** - The layout behavior is the one described by the HTML and CSS specifications. -- **Almost standards mode** - There are only a very small number of quirks implemented. Differences can be found [here](https://developer.mozilla.org/en-US/docs/Gecko's_Almost_Standards_Mode). - -###### References - -- https://developer.mozilla.org/en-US/docs/Quirks_Mode_and_Standards_Mode - -### What's the difference between HTML and XHTML? - -XHTML belongs to the family of XML markups languages and is different from HTML. Some of differences are as follows: - -- XHTML documents have to be well-formed, unlike HTML, which is more forgiving. -- XHTML is case-sensitive for element and attribute names, while HTML is not. -- Raw `<` and `&` characters are not allowed except inside of `CDATA` Sections (``). JavaScript typically contains characters which can not exist in XHTML outside of CDATA Sections, such as the `<` operator. Hence it is tricky to use inline `styles` or `script` tags in XHTML and should be avoided. -- A fatal parse error in XML (such as an incorrect tag structure) causes document processing to be aborted. - -Full list of differences can be found on [Wikipedia](https://en.wikipedia.org/wiki/XHTML#Relationship_to_HTML). - -###### References - -- https://developer.mozilla.org/en-US/docs/Archive/Web/Properly_Using_CSS_and_JavaScript_in_XHTML_Documents_ -- https://en.wikipedia.org/wiki/XHTML - -### Are there any problems with serving pages as `application/xhtml+xml`? - -Basically the problems lie in the differences between parsing HTML and XML as mentioned above. - -- XHTML, or rather, XML syntax is less forgiving and if your page isn't fully XML-compliant, there will be parsing errors and users get unreadable content. -- Serving your pages as `application/xhtml+xml` will cause Internet Explorer 8 to show a download dialog box for an unknown format instead of displaying your page, as the first version of Internet Explorer with support for XHTML is Internet Explorer 9. - -###### References - -- https://developer.mozilla.org/en-US/docs/Quirks_Mode_and_Standards_Mode#XHTML - -### How do you serve a page with content in multiple languages? - -The question is a little vague, I will assume that it is asking about the most common case, which is how to serve a page with content available in multiple languages, but the content within the page should be displayed only in one consistent language. - -When an HTTP request is made to a server, the requesting user agent usually sends information about language preferences, such as in the `Accept-Language` header. The server can then use this information to return a version of the document in the appropriate language if such an alternative is available. The returned HTML document should also declare the `lang` attribute in the `` tag, such as `...`. - -In the back end, the HTML markup will contain `i18n` placeholders and content for the specific language stored in YML or JSON formats. The server then dynamically generates the HTML page with content in that particular language, usually with the help of a back end framework. - -###### References - -- https://www.w3.org/International/getting-started/language - -### What kind of things must you be wary of when designing or developing for multilingual sites? - -- Use `lang` attribute in your HTML. -- Directing users to their native language - Allow a user to change his country/language easily without hassle. -- Text in images is not a scalable approach - Placing text in an image is still a popular way to get good-looking, non-system fonts to display on any computer. However to translate image text, each string of text will need to have it's a separate image created for each language. Anything more than a handful of replacements like this can quickly get out of control. -- Restrictive words / sentence length - Some content can be longer when written in another language. Be wary of layout or overflow issues in the design. It's best to avoid designing where the amount of text would make or break a design. Character counts come into play with things like headlines, labels, and buttons. They are less of an issue with free flowing text such as body text or comments. -- Be mindful of how colors are perceived - Colors are perceived differently across languages and cultures. The design should use color appropriately. -- Formatting dates and currencies - Calendar dates are sometimes presented in different ways. Eg. "May 31, 2012" in the U.S. vs. "31 May 2012" in parts of Europe. -- Do not concatenate translated strings - Do not do anything like `"The date today is " + date`. It will break in languages with different word order. Using template parameters instead. -- Language reading direction - In English, we read from left-to-right, top-to-bottom, in traditional Japanese, text is read up-to-down, right-to-left. - -###### References - -- https://www.quora.com/What-kind-of-things-one-should-be-wary-of-when-designing-or-developing-for-multilingual-sites - -### What are `data-` attributes good for? - -Before JavaScript frameworks became popular, front end developers used `data-` attributes to store extra data within the DOM itself, without other hacks such as non-standard attributes, extra properties on the DOM. It is intended to store custom data private to the page or application, for which there are no more appropriate attributes or elements. - -These days, using `data-` attributes is not encouraged. One reason is that users can modify the data attribute easily by using inspect element in the browser. The data model is better stored within JavaScript itself and stay updated with the DOM via data binding possibly through a library or a framework. - -###### References - -- http://html5doctor.com/html5-custom-data-attributes/ -- https://www.w3.org/TR/html5/dom.html#embedding-custom-non-visible-data-with-the-data-*-attributes - -### Consider HTML5 as an open web platform. What are the building blocks of HTML5? - -- Semantics - Allowing you to describe more precisely what your content is. -- Connectivity - Allowing you to communicate with the server in new and innovative ways. -- Offline and storage - Allowing webpages to store data on the client-side locally and operate offline more efficiently. -- Multimedia - Making video and audio first-class citizens in the Open Web. -- 2D/3D graphics and effects - Allowing a much more diverse range of presentation options. -- Performance and integration - Providing greater speed optimization and better usage of computer hardware. -- Device access - Allowing for the usage of various input and output devices. -- Styling - Letting authors write more sophisticated themes. - -###### References - -- https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/HTML5 - -### Describe the difference between a `cookie`, `sessionStorage` and `localStorage`. - -All the above mentioned technologies are key-value storage mechanisms on the client side. They are only able to store values as strings. - -| |`cookie`|`localStorage`|`sessionStorage`| -|--|--|--|--| -| Initiator | Client or server. Server can use `Set-Cookie` header | Client | Client | -| Expiry | Manually set | Forever | On tab close | -| Persistent across browser sessions | Depends on whether expiration is set | Yes | No | -| Have domain associated | Yes | No | No | -| Sent to server with every HTTP request| Cookies are automatically being sent via `Cookie` header | No | No | -| Capacity (per domain) | 4kb | 5MB | 5MB | -| Accessibility | Any window | Any window | Same tab | - -###### References - -- https://developer.mozilla.org/en-US/docs/Web/HTTP/Cookies -- http://tutorial.techaltum.com/local-and-session-storage.html - -### Describe the difference between ` ` and JS ` - - -``` - -```js -// File loaded from https://example.com?callback=printData -printData({ name: 'Yang Shun' }); -``` - -The client has to have the `printData` function in its global scope and the function will be executed by the client when the response from the cross-origin domain is received. - -JSONP can be unsafe and has some security implications. As JSONP is really JavaScript, it can do everything else JavaScript can do, so you need to trust the provider of the JSONP data. - -These days, [CORS](http://en.wikipedia.org/wiki/Cross-origin_resource_sharing) is the recommended approach and JSONP is seen as a hack. - -###### References - -- https://stackoverflow.com/a/2067584/1751946 - -### Have you ever used JavaScript templating? If so, what libraries have you used? - -Yes. Handlebars, Underscore, Lodash, AngularJS and JSX. I disliked templating in AngularJS because it made heavy use of strings in the directives and typos would go uncaught. JSX is my new favourite as it is closer to JavaScript and there is barely any syntax to learn. Nowadays, you can even use ES2015 template string literals as a quick way for creating templates without relying on third-party code. - -```js -const template = `
My name is: ${name}
`; -``` - -However, do be aware of a potential XSS in the above approach as the contents are not escaped for you, unlike in templating libraries. - -### Explain "hoisting". - -Hoisting is a term used to explain the behavior of variable declarations in your code. Variables declared or initialized with the `var` keyword will have their declaration "hoisted" up to the top of the current scope. However, only the declaration is hoisted, the assignment (if there is one), will stay where it is. Let's explain with a few examples. - -```js -// var declarations are hoisted. -console.log(foo); // undefined -var foo = 1; -console.log(foo); // 1 - -// let/const declarations are NOT hoisted. -console.log(bar); // ReferenceError: bar is not defined -let bar = 2; -console.log(bar); // 2 -``` - -Function declarations have the body hoisted while the function expressions (written in the form of variable declarations) only has the variable declaration hoisted. - -```js -// Function Declaration -console.log(foo); // [Function: foo] -foo(); // 'FOOOOO' -function foo() { - console.log('FOOOOO'); -} -console.log(foo); // [Function: foo] - -// Function Expression -console.log(bar); // undefined -bar(); // Uncaught TypeError: bar is not a function -var bar = function() { - console.log('BARRRR'); -} -console.log(bar); // [Function: bar] -``` - -### Describe event bubbling. - -When an event triggers on a DOM element, it will attempt to handle the event if there is a listener attached, then the event is bubbled up to its parent and the same thing happens. This bubbling occurs up the element's ancestors all the way to the `document`. Event bubbling is the mechanism behind event delegation. - -### What's the difference between an "attribute" and a "property"? - -Attributes are defined on the HTML markup but properties are defined on the DOM. To illustrate the difference, imagine we have this text field in our HTML: ``. - -```js -const input = document.querySelector('input'); -console.log(input.getAttribute('value')); // Hello -console.log(input.value); // Hello -``` - -But after you change the value of the text field by adding "World!" to it, this becomes: - -```js -console.log(input.getAttribute('value')); // Hello -console.log(input.value); // Hello World! -``` - -###### References - -- https://stackoverflow.com/questions/6003819/properties-and-attributes-in-html - -### Why is extending built-in JavaScript objects not a good idea? - -Extending a built-in/native JavaScript object means adding properties/functions to its `prototype`. While this may seem like a good idea at first, it is dangerous in practice. Imagine your code uses a few libraries that both extend the `Array.prototype` by adding the same `contains` method, the implementations will overwrite each other and your code will break if the behavior of these two methods are not the same. - -The only time you may want to extend a native object is when you want to create a polyfill, essentially providing your own implementation for a method that is part of the JavaScript specification but might not exist in the user's browser due to it being an older browser. - -###### References - -- http://lucybain.com/blog/2014/js-extending-built-in-objects/ - -### Difference between document load event and document DOMContentLoaded event? - -The `DOMContentLoaded` event is fired when the initial HTML document has been completely loaded and parsed, without waiting for stylesheets, images, and subframes to finish loading. - -`window`'s `load` event is only fired after the DOM and all dependent resources and assets have loaded. - -###### References - -- https://developer.mozilla.org/en-US/docs/Web/Events/DOMContentLoaded -- https://developer.mozilla.org/en-US/docs/Web/Events/load - -### What is the difference between `==` and `===`? - -`==` is the abstract equality operator while `===` is the strict equality operator. The `==` operator will compare for equality after doing any necessary type conversions. The `===` operator will not do type conversion, so if two values are not the same type `===` will simply return `false`. When using `==`, funky things can happen, such as: - -```js -1 == '1' // true -1 == [1] // true -1 == true // true -0 == '' // true -0 == '0' // true -0 == false // true -``` - -My advice is never to use the `==` operator, except for convenience when comparing against `null` or `undefined`, where `a == null` will return `true` if `a` is `null` or `undefined`. - -```js -var a = null; -console.log(a == null); // true -console.log(a == undefined); // true -``` - -###### References - -- https://stackoverflow.com/questions/359494/which-equals-operator-vs-should-be-used-in-javascript-comparisons - -### Explain the same-origin policy with regards to JavaScript. - -The same-origin policy prevents JavaScript from making requests across domain boundaries. An origin is defined as a combination of URI scheme, hostname, and port number. This policy prevents a malicious script on one page from obtaining access to sensitive data on another web page through that page's Document Object Model. - -###### References - -- https://en.wikipedia.org/wiki/Same-origin_policy - -### Make this work: - -```js -duplicate([1,2,3,4,5]); // [1,2,3,4,5,1,2,3,4,5] -``` - -```js -function duplicate(arr) { - return arr.concat(arr); -} - -duplicate([1,2,3,4,5]); // [1,2,3,4,5,1,2,3,4,5] -``` - -### Why is it called a Ternary expression, what does the word "Ternary" indicate? - -"Ternary" indicates three, and a ternary expression accepts three operands, the test condition, the "then" expression and the "else" expression. Ternary expressions are not specific to JavaScript and I'm not sure why it is even in this list. - -###### References - -- https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Operators/Conditional_Operator - -### What is `"use strict";`? What are the advantages and disadvantages to using it? - -'use strict' is a statement used to enable strict mode to entire scripts or individual functions. Strict mode is a way to opt in to a restricted variant of JavaScript. - -Advantages: - -- Makes it impossible to accidentally create global variables. -- Makes assignments which would otherwise silently fail to throw an exception. -- Makes attempts to delete undeletable properties throw (where before the attempt would simply have no effect). -- Requires that function parameter names be unique. -- `this` is undefined in the global context. -- It catches some common coding bloopers, throwing exceptions. -- It disables features that are confusing or poorly thought out. - -Disadvantages: - -- Many missing features that some developers might be used to. -- No more access to `function.caller` and `function.arguments`. -- Concatenation of scripts written in different strict modes might cause issues. - -Overall, I think the benefits outweigh the disadvantages, and I never had to rely on the features that strict mode blocks. I would recommend using strict mode. - -###### References - -- http://2ality.com/2011/10/strict-mode-hatred.html -- http://lucybain.com/blog/2014/js-use-strict/ - -### Create a for loop that iterates up to `100` while outputting **"fizz"** at multiples of `3`, **"buzz"** at multiples of `5` and **"fizzbuzz"** at multiples of `3` and `5`. - -Check out this version of FizzBuzz by [Paul Irish](https://gist.github.com/jaysonrowe/1592432#gistcomment-790724). - -```js -for (let i = 1; i <= 100; i++) { - let f = i % 3 == 0, b = i % 5 == 0; - console.log(f ? (b ? 'FizzBuzz' : 'Fizz') : (b ? 'Buzz' : i)); -} -``` - -I would not advise you to write the above during interviews though. Just stick with the long but clear approach. For more wacky versions of FizzBuzz, check out the reference link below. - -###### References - -- https://gist.github.com/jaysonrowe/1592432 - -### Why is it, in general, a good idea to leave the global scope of a website as-is and never touch it? - -Every script has access to the global scope, and if everyone is using the global namespace to define their own variables, there will bound to be collisions. Use the module pattern (IIFEs) to encapsulate your variables within a local namespace. - -### Why would you use something like the `load` event? Does this event have disadvantages? Do you know any alternatives, and why would you use those? - -The `load` event fires at the end of the document loading process. At this point, all of the objects in the document are in the DOM, and all the images, scripts, links and sub-frames have finished loading. - -The DOM event `DOMContentLoaded` will fire after the DOM for the page has been constructed, but do not wait for other resources to finish loading. This is preferred in certain cases when you do not need the full page to be loaded before initializing. - -TODO. - -###### References - -- https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onload - -### Explain what a single page app is and how to make one SEO-friendly. - -The below is taken from the awesome [Grab Front End Guide](https://github.com/grab/front-end-guide), which coincidentally, is written by me! - -Web developers these days refer to the products they build as web apps, rather than websites. While there is no strict difference between the two terms, web apps tend to be highly interactive and dynamic, allowing the user to perform actions and receive a response for their action. Traditionally, the browser receives HTML from the server and renders it. When the user navigates to another URL, a full-page refresh is required and the server sends fresh new HTML for the new page. This is called server-side rendering. - -However in modern SPAs, client-side rendering is used instead. The browser loads the initial page from the server, along with the scripts (frameworks, libraries, app code) and stylesheets required for the whole app. When the user navigates to other pages, a page refresh is not triggered. The URL of the page is updated via the [HTML5 History API](https://developer.mozilla.org/en-US/docs/Web/API/History_API). New data required for the new page, usually in JSON format, is retrieved by the browser via [AJAX](https://developer.mozilla.org/en-US/docs/AJAX/Getting_Started) requests to the server. The SPA then dynamically updates the page with the data via JavaScript, which it has already downloaded in the initial page load. This model is similar to how native mobile apps work. - -The benefits: - -- The app feels more responsive and users do not see the flash between page navigations due to full-page refreshes. -- Fewer HTTP requests are made to the server, as the same assets do not have to be downloaded again for each page load. -- Clear separation of the concerns between the client and the server; you can easily build new clients for different platforms (e.g. mobile, chatbots, smart watches) without having to modify the server code. You can also modify the technology stack on the client and server independently, as long as the API contract is not broken. - -The downsides: - -- Heavier initial page load due to loading of framework, app code, and assets required for multiple pages. -- There's an additional step to be done on your server which is to configure it to route all requests to a single entry point and allow client-side routing to take over from there. -- SPAs are reliant on JavaScript to render content, but not all search engines execute JavaScript during crawling, and they may see empty content on your page. This inadvertently hurts the Search Engine Optimization (SEO) of your app. However, most of the time, when you are building apps, SEO is not the most important factor, as not all the content needs to be indexable by search engines. To overcome this, you can either server-side render your app or use services such as [Prerender](https://prerender.io/) to "render your javascript in a browser, save the static HTML, and return that to the crawlers". - -###### References - -- https://github.com/grab/front-end-guide#single-page-apps-spas -- http://stackoverflow.com/questions/21862054/single-page-app-advantages-and-disadvantages -- http://blog.isquaredsoftware.com/presentations/2016-10-revolution-of-web-dev/ -- https://medium.freecodecamp.com/heres-why-client-side-rendering-won-46a349fadb52 - -### What is the extent of your experience with Promises and/or their polyfills? - -Possess working knowledge of it. A promise is an object that may produce a single value some time in the future: either a resolved value, or a reason that it's not resolved (e.g., a network error occurred). A promise may be in one of 3 possible states: fulfilled, rejected, or pending. Promise users can attach callbacks to handle the fulfilled value or the reason for rejection. - -Some common polyfills are `$.deferred`, Q and Bluebird but not all of them comply to the specification. ES2015 supports Promises out of the box and polyfills are typically not needed these days. - -###### References - -- https://medium.com/javascript-scene/master-the-javascript-interview-what-is-a-promise-27fc71e77261 - -### What are the pros and cons of using Promises instead of callbacks? - -**Pros** - -- Avoid callback hell which can be unreadable. -- Makes it easy to write sequential asynchronous code that is readable with `.then()`. -- Makes it easy to write parallel asynchronous code with `Promise.all()`. - -**Cons** - -- Slightly more complex code (debatable). -- In older browsers where ES2015 is not supported, you need to load a polyfill in order to use it. - -### What are some of the advantages/disadvantages of writing JavaScript code in a language that compiles to JavaScript? - -Some examples of languages that compile to JavaScript include CoffeeScript, Elm, ClojureScript, PureScript and TypeScript. - -Advantages: - -- Fixes some of the longstanding problems in JavaScript and discourages JavaScript anti-patterns. -- Enables you to write shorter code, by providing some syntactic sugar on top of JavaScript, which I think ES5 lacks, but ES2015 is awesome. -- Static types are awesome (in the case of TypeScript) for large projects that need to be maintained over time. - -Disadvantages: - -- Require a build/compile process as browsers only run JavaScript and your code will need to be compiled into JavaScript before being served to browsers. -- Debugging can be a pain if your source maps do not map nicely to your pre-compiled source. -- Most developers are not familiar with these languages and will need to learn it. There's a ramp up cost involved for your team if you use it for your projects. -- Smaller community (depends on the language), which means resources, tutorials, libraries and tooling would be harder to find. -- IDE/editor support might be lacking. -- These languages will always be behind the latest JavaScript standard. -- Developers should be cognizant of what their code is being compiled to — because that is what would actually be running, and that is what matters in the end. - -Practically, ES2015 has vastly improved JavaScript and made it much nicer to write. I don't really see the need for CoffeeScript these days. - -###### References - -- https://softwareengineering.stackexchange.com/questions/72569/what-are-the-pros-and-cons-of-coffeescript - -### What tools and techniques do you use for debugging JavaScript code? - -- React and Redux - - [React Devtools](https://github.com/facebook/react-devtools) - - [Redux Devtools](https://github.com/gaearon/redux-devtools) -- JavaScript - - [Chrome Devtools](https://hackernoon.com/twelve-fancy-chrome-devtools-tips-dc1e39d10d9d) - - `debugger` statement - - Good old `console.log` debugging - -###### References - -- https://hackernoon.com/twelve-fancy-chrome-devtools-tips-dc1e39d10d9d -- https://raygun.com/blog/javascript-debugging/ - -### What language constructions do you use for iterating over object properties and array items? - -For objects: - -- `for` loops - `for (var property in obj) { console.log(property); }`. However, this will also iterate through its inherited properties, and you will add an `obj.hasOwnProperty(property)` check before using it. -- `Object.keys()` - `Object.keys(obj).forEach(function (property) { ... })`. `Object.keys()` is a static method that will lists all enumerable properties of the object that you pass it. -- `Object.getOwnPropertyNames()` - `Object.getOwnPropertyNames(obj).forEach(function (property) { ... })`. `Object.getOwnPropertyNames()` is a static method that will lists all enumerable and non-enumerable properties of the object that you pass it. - -For arrays: - -- `for` loops - `for (var i = 0; i < arr.length; i++)`. The common pitfall here is that `var` is in the function scope and not the block scope and most of the time you would want block scoped iterator variable. ES2015 introduces `let` which has block scope and it is recommended to use that instead. So this becomes: `for (let i = 0; i < arr.length; i++)`. -- `forEach` - `arr.forEach(function (el, index) { ... })`. This construct can be more convenient at times because you do not have to use the `index` if all you need is the array elements. There are also the `every` and `some` methods which will allow you to terminate the iteration early. - -Most of the time, I would prefer the `.forEach` method, but it really depends on what you are trying to do. `for` loops allow more flexibility, such as prematurely terminate the loop using `break` or incrementing the iterator more than once per loop. - -### Explain the difference between mutable and immutable objects. - -- What is an example of an immutable object in JavaScript? -- What are the pros and cons of immutability? -- How can you achieve immutability in your own code? - -TODO - -### Explain the difference between synchronous and asynchronous functions. - -Synchronous functions are blocking while asynchronous functions are not. In synchronous functions, statements complete before the next statement is run. In this case the program is evaluated exactly in order of the statements and execution of the program is paused if one of the statements take a very long time. - -Asynchronous functions usually accept a callback as a parameter and execution continues on the next line immediately after the asynchronous function is invoked. The callback is only invoked when the asynchronous operation is complete and the call stack is empty. Heavy duty operations such as loading data from a web server or querying a database should be done asynchronously so that the main thread can continue executing other operations instead of blocking until that long operation to complete (in the case of browsers, the UI will freeze). - -### What is event loop? What is the difference between call stack and task queue? - -The event loop is a single-threaded loop that monitors the call stack and checks if there is any work to be done in the task queue. If the call stack is empty and there are callback functions in the task queue, a function is dequeued and pushed onto the call stack to be executed. - -If you haven't already checked out Philip Robert's [talk on the Event Loop](https://2014.jsconf.eu/speakers/philip-roberts-what-the-heck-is-the-event-loop-anyway.html), you should. It is one of the most viewed videos on JavaScript. - -###### References - -- https://2014.jsconf.eu/speakers/philip-roberts-what-the-heck-is-the-event-loop-anyway.html -- http://theproactiveprogrammer.com/javascript/the-javascript-event-loop-a-stack-and-a-queue/ - -### Explain the differences on the usage of `foo` between `function foo() {}` and `var foo = function() {}` - -The former is a function declaration while the latter is a function expression. The key difference is that function declarations have its body hoisted but the bodies of function expressions are not (they have the same hoisting behaviour as variables). For more explanation on hoisting, refer to the question above on hoisting. If you try to invoke a function expression before it is defined, you will get an `Uncaught TypeError: XXX is not a function` error. - -**Function Declaration** - -```js -foo(); // 'FOOOOO' -function foo() { - console.log('FOOOOO'); -} -``` - -**Function Expression** - -```js -foo(); // Uncaught TypeError: foo is not a function -var foo = function() { - console.log('FOOOOO'); -} -``` - -###### References - -- https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/function - -### Other Answers - -- http://flowerszhong.github.io/2013/11/20/javascript-questions.html diff --git a/interviewers/basics.md b/interviewers/basics.md deleted file mode 100644 index a803e1b6a..000000000 --- a/interviewers/basics.md +++ /dev/null @@ -1,20 +0,0 @@ -Basics -== - -## Disclaimer - -These items will all change based on your specific company and needs but these items area starting point. - -## Items To Consider - -- **Timeliness** - The interviewee should show up on time, but of course things happen and we must all be understanding that things outside of their control may happen. Try to give a few minutes leeway. -- **Strengths** - Ask the interviewee what they would consider to be their strengths and maybe rate themselves. This gives you a good idea where to start asking technical questions and sets a baseline for expected knowledge of each subject. -- **Keep Things Loose** - This is of course dependent on your industry but try to keep make the interviewee comfortable. Many people get nervous when trying to perform at their best for others and a technical interview is no different. A suggestion is to start with a personal question such as "What are some of your hobbies?" or "What do you like to do for fun?" These types of questions can help relax an interviewee and allows them to perform better. -- **Understand The Position** - Understand that a junior level candidate isn't going to have as much knowledge about languages and frameworks as a senior candidate will. -- **Save Time For Questions** - The interviewee may have questions for you! Give them the ability to ask. Maybe offer up a few questions if they have none, (ie. "What is the typical day here like for my position?", "What is your favorite part about working at __?") - -## Tech Question Technique - -- **Tools** - Using a text editor such as Sublime or Atom will give the interviewee syntax highlighting but doesn't show compiler errors which can be a help. -- **Nitpicking** - Sometimes psuedocode is okay. If testing in C# do you really need the interviewee to write `Console.WriteLine()` or is `Print()` good enough? --**Keep Dialog Open** - Don't leave the interviewee alone or sit quietly by as they attempt to coe. Give some subtle hints like "I see you're doing ____, can you think of any other ways to accomplish this?" It's unlikely that the interviewee will be working in a silo should they get the job, is there any reason they should be during the interview? diff --git a/non-technical/behavioral.md b/non-technical/behavioral.md deleted file mode 100644 index f3492f466..000000000 --- a/non-technical/behavioral.md +++ /dev/null @@ -1,165 +0,0 @@ -Behavioral -== - -Learn the [STAR](https://en.wikipedia.org/wiki/Situation,_task,_action,_result) format. From Wikipedia: - -- **Situation** - The interviewer wants you to present a recent challenge and situation in which you found yourself. -- **Task** - What were you required to achieve? The interviewer will be looking to see what you were trying to achieve from the situation. Some performance development methods[1] use “Target” rather than “Task”. Job interview candidates who describe a “Target” they set themselves instead of an externally imposed “Task” emphasize their own intrinsic motivation to perform and to develop their performance. -- **Action** - What did you do? The interviewer will be looking for information on what you did, why you did it and what the alternatives were. -- **Results** - What was the outcome of your actions? What did you achieve through your actions and did you meet your objectives? What did you learn from this experience and have you used this learning since? - -## General - -- Why do you want to work for X company? -- Why do you want to leave your current/last company? -- What are you looking for in your next role? -- Tell me about a time when you had a conflict with a co-worker. -- Tell me about a time in which you had a conflict and needed to influence somebody else. -- What project are you currently working on? -- What is the most challenging aspect of your current project? -- What was the most difficult bug that you fixed in the past 6 months? -- How do you tackle challenges? Name a difficult challenge you faced while working on a project, how you overcame it, and what you learned. -- What are you excited about? -- What frustrates you? -- Imagine it is your first day here at the company. What do you want to work on? What features would you improve on? -- What are the most interesting projects you have worked on and how might they be relevant to this company's environment? -- Tell me about a time you had a disagreement with your manager. -- Talk about a project you are most passionate about, or one where you did your best work. -- What does your best day of work look like? -- What is something that you had to push for in your previous projects? -- What is the most constructive feedback you have received in your career? -- What was one thing you had to persevere for multiple months? - -## Airbnb - -Source: [Glassdoor](https://www.glassdoor.com/Interview/Airbnb-Interview-Questions-E391850.htm) - -While loving to travel or appreciating Airbnb's growth may be good answers, try to demonstrate the deep connection you have with the product. - -- What does "belong anywhere" mean to you? -- What large problems in the world would you solve today? -- Why do you like Airbnb? -- If you had an unlimited budget and you could buy one gift for one person, what would you buy and who would you buy it for? -- If you had an unlimited budget and you could go somewhere, where would you go? -- Share one of your trips with us. -- What is the most challenging project in or out of school that you have worked on in the last 6 months. -- What is the thing that you don't want from your last internship/job? -- Give me an example of when you've been a good host. -- One thing you would like to remove from the Airbnb experience. -- What is something new that you can teach your interviewer in a few minutes? -- Tell me about why you want to work here. -- What is the best gift you have ever given or received? -- Tell me about a time you were uncomfortable and how you dealt with it. -- Explain a project that you worked on recently. -- What do you think of Airbnb? -- Tell me something about yourself and why you'd be a good fit for the position. -- Name a situation where you were impressed by a company's customer service. -- How did you work with senior management on large projects as well as multiple internal teams? -- Tell me about a time you had to give someone terrible news. -- If you were a gerbil, which gerbil would you be? -- What excites you about the company? -- How does Airbnb impact our guests and hosts? -- What part of our mission resonates the most with you? - -## Amazon - -Source: [Glassdoor](https://www.glassdoor.com/Interview/Amazon-Interview-Questions-E6036.htm) - -- How do you deal with a failed deadline? -- Why do you want to work for Amazon? -- Talked about a situation where you had a conflict with a teammate. -- In my professional experience have you worked on something without getting approval from your manager? -- Tell me a situation where you would have done something differently from what you actually did. -- What is the most exceedingly bad misstep you at any point made? -- Describe what Human Resource means to you. -- How would you improve Amazon's website? - -## Dropbox - -Source: [Glassdoor](https://www.glassdoor.com/Interview/Dropbox-Interview-Questions-E415350.htm) - -- Talk about your favorite project. -- If you were hired here what would you do? -- State an experience about how you solved a technical problem. Be specific about the diagnosis and process. - -## Hired - -Source: [Glassdoor](https://hired.com/blog/candidates/10-top-interview-questions-how-to-answer/) - -- Tell me about yourself. -- What is your biggest strength and area of growth? -- Why are you interested in this opportunity? -- What are your salary expectations? -- Why are you looking to leave your current company? -- What is your biggest strength and area of growth? -- Tell me about a time your work responsibilities got a little overwhelming. What did you do? -- Give me an example of a time when you had a difference of opinion with a team member. How did you handle that? -- Tell me about a challenge you faced recently in your role. How did you tackle it? What was the outcome? -- Where do you want to be in five years? -- Tell me about a time you needed information from someone who wasn't responsive. What did you do? - -## Lyft - -Source: [Glassdoor](https://www.glassdoor.com/Interview/Lyft-Interview-Questions-E700614.htm) - -- Tell me about your most interesting/challenging project to date. -- Why Lyft? What are you looking for in the next role? - -## Palantir - -Source: [Glassdoor](https://www.glassdoor.com/Interview/Palantir-Technologies-Interview-Questions-E236375.htm) - -- How do you deal with difficult coworkers? Think about specific instances where you resolved conflicts. -- How did you win over the difficult employees? -- Tell me about an analytical problem that you have worked on in the past. -- What are your three strengths and three weaknesses? -- If you were in charge of picking projects for Palantir, what problem would you try to solve? -- **What is something 90% of people disagree with you about?** -- What are some of the best and worse things about your current company? -- **What is broken around you?** -- What would your manager say about you? -- Describe Palantir to your grandmother. -- Teach me something you've learned? -- Tell me a time when you predicted something? -- If your supervisors were to rate you on a scale of 1-10 what would they rate you? -- What was the most fun thing you did recently? -- Tell me the story of how you became who you are today and what made you apply to Palantir. - -## Slack - -Source: [Glassdoor](https://www.glassdoor.com/Interview/Slack-Interview-Questions-E950758.htm) - -- Tell me something about your internship. -- Why do you want to join Slack? -- Tell me about your past projects. -- Explain me your toughest project and the working architecture. -- Apart from technical knowledge what did you learn during your internship? -- If someone has a different viewpoint to do a project like different programming language, how would handle this situation? -- What are your most interesting subjects and why? -- Did you find any bug in Slack? -- What is your favorite feature and why? - -## Stack Overflow - -Source: [Glassdoor](https://hired.com/blog/candidates/10-top-interview-questions-how-to-answer/) - -- What have you built? -- What is the hardest technical problem you have run into? -- How did you solve it? -- Where do you see yourself in 5 years? -- Why do you want to work here? -- How do you handle disagreements with coworkers? - -## Stripe - -Source: [Glassdoor](https://www.glassdoor.com/Interview/Stripe-Interview-Questions-E671932.htm) - -- How do you stay up to date with the latest technologies? -- Explain a project that you worked on recently that was difficult. -- Where do you see yourself in five years? - -## Twitter - -Source: [Glassdoor](https://www.glassdoor.com/Interview/Twitter-Interview-Questions-E100569.htm) - -- What would your previous boss say your biggest strength was? diff --git a/non-technical/cover-letter.md b/non-technical/cover-letter.md deleted file mode 100644 index 2047a3a53..000000000 --- a/non-technical/cover-letter.md +++ /dev/null @@ -1,8 +0,0 @@ -Cover Letter -== - -- A short introduction describing who you are and what you're looking for. -- What projects have you enjoyed working on? -- Which have you disliked? What motivates you? -- Links to online profiles you use (GitHub, Twitter, etc). -- A description of your work history (whether as a resume, LinkedIn profile, or prose). diff --git a/non-technical/interview-formats.md b/non-technical/interview-formats.md deleted file mode 100644 index b3f17746a..000000000 --- a/non-technical/interview-formats.md +++ /dev/null @@ -1,133 +0,0 @@ -Interview Formats -== - -The following interview formats are based on my experience interviewing with Bay Area companies. Formats would differ slightly depending on the roles you are applying to. Many companies like to use [CoderPad](https://coderpad.io/) for collaborative code editing. CoderPad supports running of the program, so you might be asked to fix your code such that it can be run. For front end interviews, many companies like to use [CodePen](https://codepen.io/), and it will be worth your time to familiarize yourself with the user interfaces of such web-based coding environments. - -For on-site interviews at smaller (non-public) companies, most will allow (and prefer) that you use your own laptop. Hence it is important that you prepare your development environment in advance. - -## Companies - -- [Airbnb](#airbnb) -- [Asana](#asana) -- [Dropbox](#dropbox) -- [Facebook](#facebook) -- [Google](#google) -- [Lyft](#lyft) -- [Palantir](#palantir) -- [WhatsApp](#whatsapp) - -### Airbnb - -- Recruiter phone screen. -- Technical phone interview: - - 1 or 2 x Algorithm/front end on CoderPad/CodePen. -- On-site (General): - - 2 x Algorithm coding on CoderPad. - - 1 x System design/architecture. - - 1 x Past experience/project. - - 2 x Cross functional. -- On-site (Front End): - - 2 x Front end coding on CodePen. Use any framework/library. - - 1 x General coding on your own laptop. - - 1 x Past experience/project. - - 2 x Cross functional. -- Tips: - - All sessions involve coding on your own laptop. Prepare your development environment in advance. - - You are allowed to look up APIs if you need to. - - They seem to place high emphasis on compilable, runnable code in all their coding rounds. - - Cross functional interviews will involve getting Airbnb employees from any discipline to speak with you. These interviews are mostly non-technical but are extremely important to Airbnb because they place a high emphasis on cultural fit. Do look up the Airbnb section of the behavioural questions to know what sort of questions to expect. - -### Asana - -- Recruiter phone screen. -- Technical phone interview. -- On-site (Product Engineer): - - 3 x Algorithm and system design on whiteboard within the same session. - - 1 x Algorithm on laptop and system design. This session involves writing code on your own laptop to solve 3 well-defined algorithm problems in around 45 minutes after which an engineer will come in and review the code with you. You are not supposed to run the code while working on the problem. -- Tips: - - No front end questions were asked. - - Asana places high emphasis on System Design and makes heavy use of the whiteboard. You do not necessarily have to write code for the algorithm question of the first three interviews. - - All 4 sessions involve algorithms and system design. One of the sessions will be conducted by an Engineering Manager. - - The last session will involve coding on your own laptop. Prepare your development environment in advance. - - Regardless of Product Engineer or Engineering Generalist position, their interview format and questions are similar. - -### Dropbox - -- Recruiter phone screen. -- Technical phone interviews: - - 2 x Algorithm/front end on CoderPad/CodePen. -- On-site (Front End): - - 2 x Front end on CodePen. Only Vanilla JS or jQuery allowed. - - 1 x General coding on CoderPad. - - 1 x All around. Meet with an Engineering Manager and discussing past experiences and working style. -- Tips: - - You can code on your own laptop and look up APIs. - - Dropbox recruiters are very nice and will give you helpful information on what kind of questions to expect for the upcoming sessions. - - One of the front end sessions involve coding up a pixel-perfect version of a real page on www.dropbox.com. You'll be given a spec of the desired page and you'll be asked to create a working version during the interview. - -### Facebook - -- Recruiter phone screen. -- Technical phone interviews: - - 1 or 2 x Algorithm/front end on Skype/CoderPad. -- On-site (Front End): - - 2 x Technical coding interview on whiteboard (Ninja). - - 1 x Behavioural (Jedi). Meet with an Engineering Manager and discussing past experiences and working style. - - 1 x Design/architecture on whiteboard (Pirate). -- Tips: - - You are only allowed to use the whiteboard (or wall). No laptops involved. - - For the Jedi round, you may be asked a technical question at the end of it. Front end candidates will be given a small HTML/CSS problem nearing the end of the session. - - For the Ninja rounds, you may be asked one to two questions depending on how fast you progress through the question. - -### Google - -- Recruiter phone screen. -- Technical phone interview: - - 1 or 2 x algorithm on Google Doc. -- On-site (Front End): - - 3 x Front end on whiteboard. Have to use Vanilla JS (or at the most, jQuery). - - 2 x Algorithm on whiteboard. -- Team matching. - - Speak with managers from different teams who are interested in your profile. -- Tips: - - You are only allowed to use the whiteboard. No laptops involved. - - In rare cases, candidates may even be allowed to skip the phone interview round and advanced to on-site directly. - - For non-fresh grads, you only receive an offer if you are successfully matched with a team. - -### Lyft - -- Recruiter phone screen. -- Technical phone interview: - - 1 x Algorithm/Front end over JSFiddle. -- On-site (Front End): - - 4 x Front end on Coderpad/your own laptop. Use any language/framework. - - 1 x Behavioural. Meet with an Engineering Manager and go through candidate's resume. -- Tips: - - Can use whiteboard and/or laptop. - - For front end coding, I opted to use React and had to set up the projects on the spot using `create-react-app`. - -### Palantir - -- Recruiter phone screen. -- Technical phone interview: - - 1 x Algorithm over HackerRank CodePair and Skype. -- On-site (General): - - 2 x Algorithm on whiteboard. - - 1 x Decomposition (system design) on whiteboard. -- On-site (Front End): - - 1 x Front end on your own laptop. This session lasts about 1.5 hours. Use any library/framework. - - 1 x Decomposition (system design) on whiteboard. -- Tips: - - I opted to use React and had to set up projects on the spot using `create-react-app`. - - You may be asked to meet with Engineering Managers after the technical sessions and it's not necessarily a good/bad thing. - -### WhatsApp - -- Recruiter phone screen. -- Technical phone interview: - - 2 x Algorithm over CoderPad. -- On-site (Web Client Developer): - - 4 x Algorithm on whiteboard. -- Tips: - - No front end questions were asked. - - 1 of the interviewers is an Engineering Manager. diff --git a/non-technical/negotiation.md b/non-technical/negotiation.md deleted file mode 100644 index 1f6d7dbe4..000000000 --- a/non-technical/negotiation.md +++ /dev/null @@ -1,86 +0,0 @@ -Negotiation -== - -### Ten Rules of Negotiation - -Key points extracted from "Ten Rules for Negotiating a Job Offer" [Part 1](http://haseebq.com/my-ten-rules-for-negotiating-a-job-offer/) and [Part 2](https://haseebq.com/how-not-to-bomb-your-offer-negotiation/) by Haseeb Qureshi. - -#### Get everything in writing - -Note down EVERYTHING on your phone call with the recruiters as they may be helpful later on. Even if there are things that are not directly monetary, if they relate to the job, write them down. If they tell you "we're working on porting the front-end to Angular," write that down. If they say they have 20 employees, write that down. You want as much information as you can. You'll forget a lot of this stuff, and it's going to be important in informing your final decision. - -#### Always keep the door open - -Never give up your negotiating power until you're absolutely ready to make an informed, deliberate final decision. This means your job is to traverse as many of these decision points as possible without giving up the power to continue negotiating. Very frequently, your interlocutor will try to trick you into making a decision, or tie you to a decision you didn't commit to. You must keep verbally jiu-jitsu-ing out of these antics until you're actually ready to make your final decision. - -#### Information is power - -To protect your power in the negotiation, you must protect information as much as possible. A corollary of this rule is that you should not reveal to companies what you're currently making. So given this offer, don't ask for more money or equity or anything of the sort. Don't comment on any specific details of the offer except to clarify them. Companies will ask about your current compensation at different stages in the process—some before they ever interview you, some after they decide to make you an offer. But be mindful of this, and protect information. - -> "Yeah, [COMPANY_NAME] sounds great! I really thought this was a good fit, and I'm glad that you guys agree. Right now I'm talking with a few other companies so I can't speak to the specific details of the offer until I'm done with the process and get closer to making a decision. But I'm sure we'll be able to find a package that we're both happy with, because I really would love to be a part of the team." - -#### Always be positive - -Even if the offer is bad, it's extremely important to remain positive and excited about the company. This is because your excitement is one of your most valuable assets in a negotiation. - -Despite whatever is happening in the negotiation, give the company the impression that 1) you still like the company, and that 2) you're still excited to work there, even if the numbers or the money or the timing is not working out. Generally the most convincing thing to signal this is to reiterate you love the mission, the team, or the problem they're working on, and really want to see things work out. - -#### Don't be the decision maker - -Even if you don't particularly care what your friends/family/husband/mother thinks, by mentioning them, you're no longer the only person the recruiter needs to win over. There's no point in them trying to bully and intimidate you; the "true decision-maker" is beyond their reach. This is a classic technique in customer support and remediation. It's never the person on the phone's fault, they're just some poor schmuck doing their job. It's not their decision to make. This helps to defuse tension and give them more control of the situation. - -> I'll look over some of these details and discuss it with my [FAMILY/CLOSE_FRIENDS/SIGNIFICANT_OTHER]. I'll reach out to you if I have any questions. Thanks so much for sharing the good news with me, and I'll be in touch! - -It's much harder to pressure someone if they're not the final decision-maker. So take advantage of that. - -#### Have alternatives - -If you're already in the pipeline with other companies (which you should be if you're doing it right), you should proactively reach out and let them know that you've just received an offer. Try to build a sense of urgency. Regardless of whether you know the expiration date, all offers expire at some point, so take advantage of that. - -> Hello [PERSON], -> -> I just wanted to update you on my own process. I've just received an offer from [COMPANY] which is quite strong. That said, I'm really excited about [YOUR AMAZING COMPANY] and really want to see if we can make it work. Since my timeline is now compressed, is there anything you can do to expedite the process? - -Should you specifically mention the company that gave you an offer? Depends. If it's a well-known company or a competitor, then definitely mention it. If it's a no-name or unsexy company, you should just say you received an offer. If it's expiring soon, you should mention that as well. - -Either way, send out a letter like this to every single company you're talking to. No matter how hopeless or pointless you think your application is, you want to send this signal to everyone who is considering you in the market. - -Companies care that you've received other offers. They care because each company knows that their own process is noisy, and the processes of most other companies are also noisy. But a candidate having multiple offers means that they have multiple weak signals in their favor. Combined, these converge into a much stronger signal than any single interview. It's like knowing that a student has a strong SAT score, and GPA, and won various scholarships. Sure, it's still possible that they're a dunce, but it's much harder for that to be true. - -This is not to say that companies respond proportionally to these signals, or that they don't overvalue credentials and brands. They do. But caring about whether you have other offers and valuing you accordingly is completely rational. - -Tell other companies that you've received offers. Give them more signals so that they know you're a valued and compelling candidate. And understand why this changes their mind about whether to interview you. - -Your goal should be to have as many offers overlapping at the same time as possible. This will maximize your window for negotiating. - -Have a strong BATNA (Best Alternative To a Negotiated Agreement) and communicate it. - -> I 've received another offer from [OTHER CORP] that's very compelling on salary, but I really love the mission of [YOUR COMPANY] and think that it would overall be a better fit for me. - -> I'm also considering going back to grad school and getting a Master's degree in Postmodern Haberdashery. I'm excited about [YOUR COMPANY] though and would love to join the team, but the package has to make sense if I'm going to forego a life of ironic hatmaking. - -#### Proclaim reasons for everything - -It's kind of a brain-hack, both for yourself and for your negotiating partner. Just stating a reason (any reason) makes your request feel human and important. It's not you being greedy, it's you trying to fulfill your goals. - -The more unobjectionable and sympathetic your reason, the better. If it's medical expenses, or paying off student loans, or taking care of family, you'll bring tears to their eyes. - -Just go with it, state a reason for everything, and you'll find recruiters more willing to become your advocate. - -#### Be motivated by more than just money - -You should be motivated by money too of course, but it should be one among many dimensions you're optimizing for. How much training you get, what your first project will be, which team you join, or even who your mentor will be—these are all things you can and should negotiate. - -Of course, to negotiate well you need to understand the other side's preferences. You want to make the deal better for both of you. - -#### Understand what they value - -Remember that you can always get salary raises as you continue to work at the company, but there's only one point at which you can get a signing bonus. - -The easiest thing for a company to give though is stock (if the company offers stock). Companies like giving stock because it invests you in the company and aligns interests. It also shifts some of the risk from the company over to you and burns less cash. - -#### Be winnable - -This is more than just giving the company the impression that you like them (which you continually should). But more so that you must give any company you're talking to a clear path on how to win you. Don't bullshit them or play stupid games. Be clear and unequivocal with your preferences and timeline. - -Don't waste their time or play games for your own purposes. Even if the company isn't your dream company, you must be able to imagine at least some package they could offer you that would make you sign. If not, politely turn them down. diff --git a/non-technical/psychological-tricks.md b/non-technical/psychological-tricks.md deleted file mode 100644 index 6a3b50a67..000000000 --- a/non-technical/psychological-tricks.md +++ /dev/null @@ -1,27 +0,0 @@ -Psychological Tricks -== - -Here are some psychological tricks that will help you ace a job interview. - -- Tailor your answers to the interviewer's age. - - Generation Y interviewers (between 20 and 30): Bring along visual samples of your work and highlight your ability to multitask. - - Generation X interviewers (between 30 and 50): Emphasize your creativity and mention how work/life balance contributes to your success. - - Baby Boomer interviewers (between 50 and 70): Show that you work hard and demonstrate respect for what they've achieved. -- Hold your palms open or steeple your hands. -- Find something in common with your interviewer. -- Mirror the interviewer's body language. -- Compliment the interviewer and the organization without self-promoting. - - Specifically, the students who ingratiated themselves praised the organization and indicated their enthusiasm for working there, and complimented the interviewer. They didn't play up the value of positive events they took credit for or take credit for positive events even if they weren't solely responsible. -- Show confidence and deference simultaneously. - - In a job interview, that means showing deference to your interviewer, while also demonstrating self-confidence. One way to do that is to say something like, "I love your work on [whatever area]. It reminds me of my work on [whatever area]." -- Emphasize how you took control of events in your previous jobs. - - To impress your interviewer, you should talk about past work experiences where you took initiative. -- Be candid about your weaknesses. - - It's wiser to say something genuine like, "I'm not always the best at staying organized," which sounds more honest, and could make your interviewer more inclined to recommend you for the position. -- Speak expressively. -- Showcase your potential. - - You might be tempted to tell your interviewer all about your past accomplishments — but research suggests you should focus more on what you could do in the future, if the organization hires you. - -###### References - -- [Business Insider](http://www.businessinsider.com/psychological-tricks-to-ace-job-interview-2015-11) diff --git a/non-technical/questions-to-ask.md b/non-technical/questions-to-ask.md deleted file mode 100644 index 322b1952d..000000000 --- a/non-technical/questions-to-ask.md +++ /dev/null @@ -1,110 +0,0 @@ -Questions to Ask -== - -Here are some good questions to ask at the end of the interview, extracted from various sources. The ones in **bold** are the ones that tend to make the interviewer go "That's a good question" and pause and think for a bit. - -### General - -- **What are you most proud about in your career so far?** -- **What is the most important/valuable thing you have learnt from working here?** -- How do your clients and customers define success? -- What would you change around here if you could? -- What are some weaknesses of the organization? -- What does a typical day look like for you? -- What do you think the company can improve at? -- How would you see yourself growing at this company in the next few years? -- Was there a time where you messed up and how was it handled? -- Why did you choose to come to this company? -- When you were last interviewing, what were some of your other options, and what made you choose this company? -- What was something you wish someone would have told you before you joined? -- What was your best moment so far at the company? - -### Culture - -- **What is the most frustrating part about working here?** -- **What is unique about working at this company that you have not experienced elsewhere?** -- **What is something you wish were different about your job?** -- How will the work I will be doing contribute to the organization's mission? -- What do you like about working here? -- What is your policy on working from home/remotely? -- (If the company is a startup) When was the last time you interacted with a founder? What was it regarding? Generally how involved are the founders in the day-to-day? -- Does the company culture encourage entrepreneurship? Could you give me any specific examples? - -### Technical - -These questions are suitable for any technical role. - -- **What are the engineering challenges that the company/team is facing?** -- **What has been the worst technical blunder that has happened in the recent past? How did you guys deal with it? What changes were implemented afterwards to make sure it didn't happen again?** -- **What is the most costly technical decision made early on that the company is living with now?** -- **What is the most fulfilling/exciting/technically complex project that you've worked on here so far?** -- How do you evaluate new technologies? Who makes the final decisions? -- How do you know what to work on each day? -- How would you describe your engineering culture? -- How has your role changed since joining the company? -- What is your stack? What is the rationale for/story behind this specific stack? -- Do you tend to roll your own solutions more often or rely on third party tools? What's the rationale in a specific case? -- How does the engineering team balance resources between feature requests and engineering maintenance? -- What do you measure? What are your most important product metrics? -- What does the company do to nurture and train its employees? -- How often have you moved teams? What made you join the team you're on right now? If you wanted to move teams, what would need to happen? -- If you hire person, what do you have for him to study product you're working on and processes in general? Do you have specifications, requirements, documentation? -- There's "C++" (or Python, Swift or any other tech) in the job description. How will you estimate my proficiency in this tech in 3 months? - -### Product - -- Tell me about the main products of your company. -- What is the current version of product? (If it is v1.0 or similar - there could be a lot of chaos to work with) -- What products are your main competitors? -- What makes your product competitive? -- When are you planning to provide the next release? (If in several months, it would mean a lot of requirements specified in job description are not needed right now) - -### Management - -These questions are suitable for asking Engineering Managers, especially useful for the Team Matching phase of Google interviews or post-offer calls that your recruiters set up with the various team managers. - -- **How do you train/ramp up engineers who are new to the team?** -- **What does success look like for your team?** -- **What qualities do you look out for when hiring for this role?** -- **What are the strengths and weaknesses of the current team? What is being done to improve upon the weaknesses?** -- **Can you tell me about a time you resolved an interpersonal conflict?** -- How did you become a manager? -- How do your engineers know what to work on each day? -- What is your team's biggest challenge right now? -- How do you measure individual performance? -- How often are 1:1s conducted? -- What is the current team composition like? -- What opportunities are available to switch roles? How does this work? - -### Leadership - -These questions are intended for senior level management, such as CEO, CTO, VPs. Candidates who interview with startups usually get to speak with senior level management. - -- How are you funded? -- Are you profitable? If no, what's your plan for becoming profitable? -- What assurance do you have that this company will be successful? -- Tell me about your reporting structure. -- How does the company decide on what to work on next? - -### HR - -- **How do you see this position evolving in the next three years?** -- **Who is your ideal candidate and how can I make myself more like them?** -- What concerns/reservations do you have about me for this position? -- What can I help to clarify that would make hiring me an easy decision? -- How does the management team deal with mistakes? -- If you could hire anyone to join your team, who would that be and why? -- How long does the average engineer stay at the company? -- Why have the last few people left? -- Have you ever thought about leaving? If you were to leave, where would you go? - -###### References - -- [Business Insider](http://www.businessinsider.sg/impressive-job-interview-questions-2015-3/) -- [Lifehacker](http://lifehacker.com/ask-this-question-to-end-your-job-interview-on-a-good-n-1787624433) -- [Fastcompany](https://www.fastcompany.com/40406730/7-questions-recruiters-at-amazon-spotify-and-more-want-you-to-ask) -- [Questions I'm asking in interviews](http://jvns.ca/blog/2013/12/30/questions-im-asking-in-interviews/) -- [How to interview your interviewers](http://blog.alinelerner.com/how-to-interview-your-interviewers/) -- [How to Break Into the Tech Industry—a Guide to Job Hunting and Tech Interviews](https://haseebq.com/how-to-break-into-tech-job-hunting-and-interviews/) -- [A developer's guide to interviewing](https://medium.freecodecamp.org/how-to-interview-as-a-developer-candidate-b666734f12dd) -- [Questions I'm asking in interviews 2017](https://cternus.net/blog/2017/10/10/questions-i-m-asking-in-interviews-2017/) diff --git a/non-technical/resume.md b/non-technical/resume.md deleted file mode 100644 index 0c6290f64..000000000 --- a/non-technical/resume.md +++ /dev/null @@ -1,147 +0,0 @@ -Resume -== - -The following content is by Christina Ng and rephrased for the purpose of this handbook. You can follow her on [Medium](https://medium.com/@christinang89) or [Quora](https://www.quora.com/profile/Christina-Ng). - -## Table of Contents - - 1. [How Your Resume is Screened](#how-your-resume-is-screened) - 1. [10 Ways To Improve Your Resume](#10-ways-to-improve-your-resume) - -## How Your Resume is Screened - -While many engineers can be rather qualified for the role they are applying for, they miss out on getting a shot at the interview as they might never get past resume screening. The main issue was that they do not understand how recruiters worked. - -Before writing your resume, it is important to understand the recruiting structure and how recruiting is done. - -### The Skill Set Checklist - -Before opening up a position/starting the search for candidates, I usually consult very closely with the team manager/decision maker to find out the specific skill sets that are relevant for the position. These skill sets are typically grouped into "Must have", "Good to have", and "Special bonus". - -- "Must have" — Typically, most of the must-haves include a degree (or not) in a relevant technical field, some years (or not) of experience in a particular programming language or technology. -- "Good to have" — Includes experience/familiarity with secondary languages/technologies which may not be directly relevant to what the candidate would be working on, but could be required due to some interfacing with other components of the project. It could also include softer skills such as being a good team player, clear communication, etc. -- "Special bonus" — Recognized skill sets/experiences which are difficult to come by. Probably not a requirement, but would definitely be useful for the position. - -Now that I am armed with this list, the search for candidates begin. - -Typically, I do not seek that "one perfect candidate". What I seek for is the "best fit candidate". The search is essentially a numbers game. I know that for a specific job posting, there would perhaps be X applicants. At each stage of the interview process, some percentage of the candidates will be eliminated, leaving only a final Y% of the initial pool to choose from. Since Y tends to be a rather small number, recruiters will try to maximize X. - -### The 10 Seconds Glance - -When I am looking at your resume, I am doing a keyword match against the skill set checklist. If I see a good amount of the right keywords in your resume, it is a pass. If I need to spend more than 10 seconds trying to figure out what you are writing about, it is a fail. If I see an excessive amount of keywords (much looking like spam), it signals a red flag and goes into the "maybe". Depending on whether I think I have enough candidates for the day, you could eventually go into the pass or fail stack. - -There are lots of articles writing about how recruiters only spend an average of about 10 seconds to screen each resume. The news is, this is true because resume screening is such a menial, robotic and repetitive task. In fact, many applicant tracking systems (ATS) now are so advanced that they can parse your resume automatically, search for specific keywords in your resume, and score your resume based on the weights pre-assigned to each keyword. - -Finding a job is a two-way fit — the company wants someone with the relevant skills required, but it is also important for the applicant to fit in the company culture, and be able to gain something out of his stint. Hence, honesty is the single most important criteria in a resume. - -There is a delicate balance between finding the right job vs. finding a job. Getting rejected does not always mean you are not good enough. Sometimes, it just means you are not a right fit for what the company is looking for. - -When hiring fresh grads, I know that many of them will not have as much experience as someone who has years of industry experience. Hence, I would look out more for soft skills, such as attention to detail, initiative, passion, ability to get things done, etc. Note: this applies only if you have met the minimum threshold of proficiency/competency in the skill set checklist. - -## 10 Ways To Improve Your Resume - -Now that you are aware of how recruiters screen your resume, here are 10 actionable ways you can do to improve your resume. - -#### 1. Cover letter - -I've often received resumes with no cover letters, and I am perfectly fine with it. If you ask me, it is better to have no cover letter than to have a bad cover letter, especially if your cover letter is a "templated" content. An effective cover letter needs to highlight the fit between the job requirements and your skills/experiences. Do not just tell me what you have done in your cover letter; Tell me how it is a fit for what I am looking for. - -Some small nitpicks: - -- Make sure that the cover letter is addressed to the right person (either the name of the recruiter if it is known, or to a generic hiring manager) and company. -- Run a spell check. - -#### 2. Length of resume - -Your resume should be kept to 1 page or a MAXIMUM of 2 pages. Include only your most recent and relevant experiences. - -Information that a recruiter wants to know: - -- Name, email, contact number. -- Education details: College, Major, GPA, Sample classes (optional, but if you list, make sure its classes that you scored well in and are relevant to your area of interest), academic awards, availability. -- If you have studied abroad, you can list that too. -- Projects that you have worked on. -- Work experience/co-curricular activities. -- Skills/other interests. -- Street cred - GitHub/StackOverflow/LinkedIn profile (optional, but highly recommended). - -Information nobody needs to know: - -- Your profile picture. -- Address, home phone number, gender, religion, race, marital status, etc etc. -- Elementary, middle, high school. -- Your low GPA. -- Anything less recent than 3-4 years unless they are valid job experiences. -- Anything about your parents/siblings, their names, occupation, etc. -- Your life story. -- Anything not relevant to the job you are applying for (e.g. that you have a driving license when you are applying to be a programmer). - -Ideally, keep it short, concise, but as detailed as possible. - -#### 3. GPA does matter - -Everyone wants the cream of the crop. In the absence of a standardized test, GPA serves as that indicator. **While GPA may not necessarily be a good indication of how well you can code, a high GPA would definitely put you in a more favorable position to the recruiter.** - -If your GPA is rather low, but you have loads of technical experiences, you can try not listing your GPA in the resume. This kinda "forces" the recruiter to read through your projects/job experience, and perhaps grant you a first interview. If you manage to impress them, who cares about your GPA? But if your GPA is low and you do not have skills for the job... maybe you should work on one of them and revisit job applications later. - -In a different scenario, some students have low GPA, but it might be due to some irrelevant classes which they did badly in. E.g. Student X is scoring A for all his programming classes, but did not do well for his language classes. If I am hiring a developer, Student X would still be a suitable candidate despite his low GPA. In such cases, it might even be recommended to attach a transcript along with the resume. - -Also, when you list your GPA/results, try to benchmark it. Instead of simply listing 4.6, write 4.6/5.0 (First Class Honors or Summa Cum Laude). To the recruiter, 4.6 does not mean anything if he/she is not familiar with your grading system. - -#### 4. Be clear about your objectives - -Are you looking for a summer internship/full-time employment? What position are you applying for? Read the job description and know the job you are applying for!! - -**"Work experience" does not mean any work experience; it means *relevant* work experience.** If you are applying for a developer position, the recruiter is not interested to know that you were a student escort for girls walking back to their apartments at night, nor that you were a cashier at Starbucks. You would be better off writing about the project you did for some programming class - yes, even if it was just a school project. Tailor your experiences and projects according to the job you are applying for. Pick relevant details to emphasize on and do not be hesitant to drop stuff completely if they are totally irrelevant. Quality over quantity. - -- Make sure the description is comprehensive. Avoid writing "Software engineering intern - write code". You are better off not writing anything. -- Based on my experience, most fresh grads do not have extremely relevant job experience (unless you are lucky to have scored a really rewarding internship). For developer positions, I think it is ok to not have any job experience and just list projects. - -#### 5. Reverse chronological order - -Always list your resume in reverse chronological order - the most recent at the top. Recruiters are more interested in what you have worked on recently than what you worked on 3 years ago. Chances are, you probably forgot the details too anyway. - -#### 6. Make sure you are contactable - -- Get a proper email account with ideally your first name and last name, eg. "john.doe@gmail.com" instead of "angrybirds88@gmail.com". -- If you are using your school's .edu email, try to have an alias like "john.doe@xxx.edu" instead of "a002342342@xxx.edu". -- Avoid emails like "me@christi.na" or "admin@[mycooldomain].com" -- because it is very prone to typo errors. -- Make sure the number you have listed is the best way to reach you. The last thing you want is to miss the call from the recruiter because you typed the wrong number, or you are not available on that number during office hours (most probably the times the recruiter will call). - -#### 7. Layout/Formatting/Design - -- Be consistent about the way you format your resume. Italics, underline, bold, and how they are used. -- Keep to a single standard font (avoid fancy fonts like Comic Sans or whatever) and do not have too many varying styles/font sizes/color -- Be consistent about the way you list your dates (eg. May 2011 - Aug 2011). Avoid using numerals for both month and date due to the difference in style for MMDD and DDMM in different countries. Dates like "Aug 2011 - June 12" just show that you have zero attention to detail. -- Unless you are applying for a design job, just stick to the standard "table" style for the resume. There is nothing wrong with the standard style, and it helps the recruiter screen your resume more efficiently since they are trained through experience to read that format. It would also help in the automatic scoring by the ATS. The last thing you want is for your application to be rejected because the system could not parse your resume for it to be scored. That said, I am not discouraging you from coming up with your own design. It is nice to read something different. Just be aware of the risks you could be taking. -- Name your file `firstname_lastname_resume.pdf` instead of `resume.pdf` - it is easier for recruiters to search/forward. -- PDF preferred over Word doc. -- Be consistent about bullet points. -- Your resume should not look sparse. (Come on, it is only 1 page!) If you really have trouble filling it up, you are either not thinking hard enough, or not doing enough. In the case of the latter, consider working on your personal projects (i.e. stuff you can post on GitHub). That said, do not write stuff just to fill space. Read point 4. -- This should be common sense, but do not commit fraud, i.e. apply for the same job using a different name, or using your friend's resume to apply for the same job. Some ATS issues an indicator if they suspect the application to be a duplicate. -- It's important to note the layout of your resume. If you choose to quickly upload your resume via an auto-fill program, understand that the program will read your resume from top to bottom, left to right. This is good to keep in mind when developing the layout of your resume. -- Try to keep white space down to a minimum. This will also help reduce the length of your resume to one page. Reduce margins and paddings reasonably. - -#### 8. Listing Your skills - -It is useful to list your relevant skills in a quick summary section for easy reading/matching. However, many people make the mistake of listing as many skills/programming languages in the resume as possible. This may get you through the ATS scoring, but it definitely would not leave a good impression on the recruiter - the actual human reading your resume and deciding whether to call you up for an interview! - -Ideally, if your resume is good enough, the recruiter should already know what you are proficient in. The skills section is just a quick summary/reiteration. **Listing a bunch of technologies you claim you know without actually showing how you have worked with them is pointless.** - -#### 9. Projects - -- Ideally, 1-2 lines about the project, 2-3 lines about your role, what technologies you used, what you did, your learning, etc etc. These can be Final Year Projects, Research projects, projects for a particular class, freelance projects, or just personal projects (ie. GitHub stuff). -- Ideally, 2 to 3 projects that align with your interests/position you are applying for. -- Avoid using titles such as "Project for [module code]". Sorry, the recruiter has no idea what class is represented by the module code. -Ideally, you want the project section to demonstrate your personality and skills, and be the talking point during the interview. - -#### 10. Online profile/other interests - -Here's the news - Recruiters do search for your name! Definitely pre-empt that by Googling/Facebook-ing/searching yourself on all forms of social media to see what turns up. Make sure your privacy settings are restricted so your online profile shows only the image you are trying to project. - -If you have some space on your resume, it is good to list additional interests outside of coding. Eg. skiing, water sports, soccer, etc etc. Gives the interviewer something to talk to you about. It also shows that you are a well-rounded individual/cool person to hang out with. - -###### References - -- [Screening your resume is like playing word search](https://medium.com/@christinang89/screening-your-resume-is-like-playing-word-search-60f4d0e60840) -- [10 tips to get past resume screening for College Students/Grads](https://christinang89.quora.com/10-tips-to-get-past-resume-screening-for-College-Students-Grads) diff --git a/non-technical/self-introduction.md b/non-technical/self-introduction.md deleted file mode 100644 index 7e5e0fea9..000000000 --- a/non-technical/self-introduction.md +++ /dev/null @@ -1,27 +0,0 @@ -Self Introduction -== - -You can rephrase the question like this: - -"Tell me about your journey into tech. How did you get interested in coding, and why was web development a good fit for you? How is that applicable to our _____ role or company goals?" - -### The Elevator Pitch - -The Elevator Pitch is an indispensable tool for you as you move forward in your career. An Elevator Pitch is just that -- you pitch yourself to an executive that you want to impress and only have a short elevator ride to do so. Whether you're at a job fair with hundreds of other candidates and you have limited time or you are simply explaining who you are to a potential connection or client, it is important to be able to clearly and accurately describe your knowledge and skillset quickly and succinctly. Here are some tips to develop a good Elevator Pitch: - -- Sell yourself - - The whole point of this is to get you a job or make a connection that benefits your career. - - Tell them who you are, who you work for (or school and major), and what you do. -- KISS (Keep It Simple, Stupid) - - Tell them some highlights from your favorite / most impressive projects. - - Do not delve into the depths of how you reverse engineered a game and decrypted a packet to predict when to use your DKP on a drop. Tell them the executive summary: "I reverse engineered X game by decrypting Y packet to predict Z." If this catches their interest, they *will* ask further questions on their own. -- Why do *they* want *you*? - - This is where you use your knowledge of the company, knowledge of their technology stack(s), your unique talent that they want, etc. in order to solidify your ability to contribute to their company. -- PRACTICE! - - Lastly, you must practice your pitch! Having a great, succinct summary of your skills only helps if you can actually deliver it rapidly! You should practice keeping a quick but easy-to-follow pace that won't overwhelm them but won't bore them. It's a precarious balance, but can be ironed out with practice. - -Having an Elevator Pitch on hand is a great way to create a network and happen upon new job opportunities. There will often be times when you can't prepare for an interview or meeting, and it is incredibly handy to have a practiced pitch. - -###### References - -- [8 Secrets to Software Engineer Self Introduction](http://blog.gainlo.co/index.php/2016/10/14/8-secretes-software-engineer-self-introduction) diff --git a/preparing/README.md b/preparing/README.md deleted file mode 100644 index 80776abcf..000000000 --- a/preparing/README.md +++ /dev/null @@ -1,121 +0,0 @@ -Preparing for a Coding Interview -== - -### Picking a Programming Language - -Before anything else, you need to pick a programming language to do your interviews in. Most companies will let you code in any language you want, the only exception I know being Google, where they only allow candidates to pick from Java, C++ or Python for their algorithmic coding interviews. Most of the time, I would recommend that you use a language that you are extremely familiar with rather than picking up a new language just for doing interviews because the company uses that language heavily. - -There are some languages which are more suitable than others for coding interviews and some languages you absolutely want to avoid. From my experience interviewing as an interviewer, most candidates pick Python or Java. Other commonly seen languages include JavaScript, Ruby and C++. I would absolutely avoid lower level languages like C or Go, simply because they lack in many standard library functions and data structures. - -Personally, Python is my de facto choice for coding algorithms during interviews because it is succinct and has a pretty huge library of functions and data structures available. One of my top reasons for recommending Python is that it uses consistent APIs that operate on different data structures, such as `len()`, `for ... in ...` and slicing notation on sequences (strings/lists/tuples). Getting the last element in a sequence is `arr[-1]` and reversing it is simply `arr[::-1]`. You can achieve a lot with minimal syntax in Python. - -Java is a decent choice too but having to constantly declare types in your code means extra keystrokes which results in slower coding/typing speed. This issue will be more apparent when you have to write on a whiteboard during on-site interviews. The reasons for choosing/not choosing C++ are similar to Java. Ultimately, Python, Java and C++ are decent choices of languages. If you have been using Java at work for a while now and do not have time to be comfortably familiar with another language, I would recommend just sticking to Java instead of picking up Python from scratch just for interviews to avoid having to context switch between languages during work vs interviews. Most of the time, the bottleneck is in the thinking and not the writing. - -One exception to the convention of allowing you to "pick any programming language you want" is when you are interviewing for a domain-specific position, such as Front End/iOS/Android Engineer roles, in which you would need to be familiar with coding algorithms in JavaScript, Objective-C/Swift and Java respectively. If you need to use a data structure that the language does not support, such as a Queue or Heap in JavaScript, perhaps try asking the interviewer whether you can assume that you have a data structure that implements certain methods with specified time complexities. If the implementation of that data structure is not crucial to solving the problem, the interviewer will usually allow it. In reality, being aware of existing data structures and selecting the appropriate ones to tackle the problem at hand is more important than knowing the intricate implementation details. - -### Review your CS101 - -If you have been out of college for a while, it is highly advisable to review CS fundamentals — Algorithms and Data Structures. Personally, I prefer to review as I practice, so I scan through my college notes and review the various algorithms as I work on algorithm problems from LeetCode and Cracking the Coding Interview. - -This [interviews repository](https://github.com/kdn251/interviews) by Kevin Naughton Jr. served as a quick refresher for me. - -The Medium publication [basecs](https://medium.com/basecs) by [Vaidehi Joshi](https://medium.com/@vaidehijoshi) is also a great and light-hearted resource to recap on the various data structures and algorithms. - -If you are interested in how data structures are implemented, check out [Lago](https://github.com/yangshun/lago), a Data Structures and Algorithms library for JavaScript. It is pretty much still WIP but I intend to make it into a library that is able to be used in production and also a reference resource for revising Data Structures and Algorithms. - -### Mastery through Practice - -Next, gain familiarity and mastery of the algorithms and data structures in your chosen programming language: - -1. Practice coding algorithms using your chosen language. While [Cracking the Coding Interview](http://www.crackingthecodinginterview.com/) is a good resource for practice, I prefer being able to type code, run it and get instant feedback. There are various Online Judges such as [LeetCode](https://leetcode.com/), [HackerRank](https://www.hackerrank.com/) and [CodeForces](http://codeforces.com/) for you to practice questions online and get used to the language. From experience, LeetCode questions are the most similar to the kind of questions being asked in interviews whereas HackerRank and CodeForces questions are more similar to competitive programming questions. If you practice enough LeetCode questions, there is a good chance that you would have seen/done your actual interview question (or some variant) on LeetCode before. If you are more of a visual person, [Coderust](https://www.educative.io/collection/5642554087309312/5679846214598656) explains the common algorithm questions through step-by-step visualizations which makes understanding the solutions much easier. -2. Learn and understand the time and space complexities of the common operations in your chosen language. For Python, this [page](https://wiki.python.org/moin/TimeComplexity) will come in handy. Also find out the underlying sorting algorithm that is being used in the language's `sort()` function and its time and space complexity (in Python its Timsort which is a hybrid sort). After completing a question on LeetCode, I usually add the time and space complexities of the written code as comments above the function body to remind myself to analyze the algorithm after I am done with the implementation. -3. Read up on the recommended coding style for your language and stick to it. If you have chosen Python, refer to the PEP 8 Style Guide. If you have chosen Java, refer to Google's Java Style Guide. -4. Find out and be familiar with the common pitfalls and caveats of the language. If you point out them out during the interview and intelligently avoid falling into them, you will usually impress the interviewer and that results in bonus points in your feedback, regardless of whether the interviewer is familiar with the language or not. -5. Gain a broad exposure to questions from various topics. In the second half of the article I mention algorithm topics and practice questions for each topic. Do around 100–200 LeetCode questions and you should be good. - -Practice, practice and more practice! - -### Phases of a Coding Interview - -Congratulations, you are ready to put your skills into practice! In a real coding interview, you will be given a technical question by the interviewer, write code in a real-time collaborative editor (phone screen) or on a whiteboard (on-site) to solve the problem within 30–45 minutes. This is where the real fun begins! - -Your interviewer will be looking out for signals that you fit the requirements of the role and it is up to you to display those signals to them. Initially it may feel weird to be talking while you are coding as most programmers do not have the habit of explaining out loud as they are typing code. However, it is hard for the interviewer to know what you are thinking just by looking at the code that you type. If you communicate your approach to the interviewer before you start coding, you can validate your approach with them and the both of you can agree upon an acceptable approach. - -**Before the Interview (Remote)** - -For phone screens/remote interviews, prepare paper and pen/pencil to jot down and visualize stuff. If you are given a question on trees and graphs, it usually helps if you draw out some examples of the data structure given in the question. - -Use earphones and make sure you are in a quiet environment. You definitely do not want to be holding a phone in one hand and only be able to type with the other. Try avoiding using speakers because if the echo is bad, communication is harder and repeating of words will just result in loss of valuable time. - -**Self Introduction** - -TODO - -**Upon Getting the Question** - -Many candidates jump into coding the moment they hear the question. That is usually a big mistake. Take a moment to repeat the question back at the interviewer and make sure that you understand exactly what they are asking. If you misunderstood and when you repeat back the question, they will clarify. - -Always seek clarification about the question upon hearing it even if it you think it is clear to you. You might discover something that you have missed out and it also sends a signal to the interviewer that you are a careful person who pays attention to details. Some interviewers deliberately omit important details to see if you ask the right questions. Consider asking the following questions: - -- How big is the size of the input? -- How big is the range of values? -- What kind of values are there? Are there negative numbers? Floating points? Will there be empty inputs? -- Are there duplicates within the input? -- What are some extreme cases of the input? -- How is the input stored? If you are given a dictionary of words, is it a list of strings or a Trie? - -After you have sufficiently clarified the scope and intention of the problem, explain your high level approach to the interviewer even if it is a naive solution. If you are stuck, consider various approaches and explain out loud why it will/will not work. Sometimes your interviewer might drop hints and lead you towards the right path. - -Start with a brute force approach, communicate it to the interviewer, explain the time and space complexity and why it is bad. It is unlikely that the brute force approach will be one that you will be coding. At this point, the interviewer will usually pop the dreaded "Can we do better?" question, meaning that they are looking for a more optimal approach. In my opinion, this is usually the hardest part of the interview. In general, look for repeated work and try to optimize them by potentially caching the calculated result somewhere and reference it later, rather than having to compute it all over again. There are some tips on tackling topic-specific questions that I dive into details below. - -Only start coding after you and your interviewer have agreed on an approach and has given you the green light. - -**Starting to Code** - -Write your code with good coding style. Reading code written by others is usually not an enjoyable task. Reading horribly-formatted code by others makes it worse. Your goal is to make your interviewer understand the code you have written so that they can quickly evaluate if your code does what you say it does and whether it solves the given problem. Use clear variable names, avoid single letter names unless they are for iteration. However, if you are coding on a whiteboard, you might not want to use extremely verbose variable names for the sake of reducing the amount you have to write. - -Always be explaining what you are currently writing/typing to the interviewer. This is not about literally reading out what you are typing to the interviewer. Talk about the section of the code you are currently implementing at a higher level, explain why it is written as such and what it is trying to achieve. - -When you copy and paste code, consider whether it is necessary. Sometimes it is, sometimes it is not. If you find yourself copying and pasting one large chunk of code spanning multiple lines, it is probably an indicator that you can refactor by containing those lines into a function. If it is just a single line you copied, usually it is fine. Do remember to change the respective variables in your copied line of code where relevant. Copy-paste errors are a common source of bugs even in day-to-day coding! - -**After Coding** - -After you have finished coding, do not immediately announce to the interviewer that you are done. In most cases, your code is usually not perfect and contains some bugs or syntax errors. What you need to do now is to review your code. - -Firstly, look through your code from start to finish as if it is the first time you are seeing it, as if it was written by someone else and you are trying to spot bugs in it. That's exactly what your interviewer will be doing. Look through and fix any minor issues you may find. - -Next, come up with small test cases and step through the code (not your algorithm!) with those sample input. Interviewers like it when you read their mind and what they usually do after you have finished coding would be to get you to write tests. It is a huge plus if you write tests for your code even before prompts from them. You should be emulating a debugger when stepping through and jot down or say out the values of certain variables as you step through the lines of code. - -If there are huge duplicated chunks of code in your solution, it would be a good chance to refactor it and demonstrate to the interviewer that you are one who values code quality. Also look out for places where you can do [short-circuit evaluation](https://en.wikipedia.org/wiki/Short-circuit_evaluation). - -Lastly, give the time/space complexity of your code and explain why it is such. You can even annotate certain chunks of your code with the various time/space complexities to demonstrate your understanding of your code and the APIs of your chosen programming language. Explain any trade-offs in your current approach vs alternative approaches, possibly in terms of time/space. - -If your interviewer is happy with the solution, the interview usually ends here. It is also not uncommon that the interviewer asks you extension questions, such as how you would handle the problem if the whole input is too large to fit into memory, or if the input arrives as a stream. This is a common follow-up question at Google where they care a lot about scale. The answer is usually a divide-and-conquer approach — perform distributed processing of the data and only read certain chunks of the input from disk into memory, write the output back to disk and combine them later on. - -### Practicing via Mock Interviews - -Interviewing is a skill that you can get better at. The steps mentioned above can be rehearsed over and over again until you have fully internalized them and following those steps become second nature to you. A good way to practice is to find a friend to partner with and the both of you can take turns to interview each other. - -A great resource for practicing mock coding interviews would be [interviewing.io](https://interviewing.io/). interviewing.io provides free, anonymous practice technical interviews with Google and Facebook engineers, which can lead to real jobs and internships. By virtue of being anonymous during the interview, the inclusive interview process is de-biased and low risk. At the end of the interview, both interviewer and interviewees can provide feedback to each other for the purpose of improvement. Doing well in your mock interviews will unlock the jobs page and allow candidates to book interviews (also anonymously) with top companies like Uber, Lyft, Quora, Asana and more. For those who are totally new to technical interviews, you can even view a [demo interview](https://start.interviewing.io/interview/9hV9r4HEONf9/replay) on the site (requires sign in). Read more about them [here](https://techcrunch.com/2017/09/27/interviewing-io-hopes-to-close-the-engineer-diversity-gap-with-anonymous-interviews/). - -I have used interviewing.io both as an interviewer and an interviewee and found the experience to be really great! [Aline Lerner](https://twitter.com/alinelernerLLC), the CEO and co-founder of interviewing.io and her team are passionate about revolutionizing the technical interview process and helping candidates to improve their skills at interviewing. She has also published a number of technical interview-related articles on the [interviewing.io blog](http://blog.interviewing.io/). interviewing.io is still in beta now but I recommend signing up as early as possible to increase the likelihood of getting an invite. - -Another platform that allows you to practice coding interviews is [Pramp](https://pramp.com/). Where interviewing.io matches potential job seekers with seasoned technical interviewers, Pramp takes a different approach. Pramp pairs you up with another peer who is also a job seeker and both of you take turns to assume the role of interviewer and interviewee. Pramp also prepares questions for you, along with suggested solutions and prompts to guide the interviewee. - -Personally, I am not that fond of Pramp's approach because if I were to interview someone, I would rather choose a question I am familiar with. Also, many users of the platform do not have the experience of being interviewers and that can result in a horrible interview experience. There was once where my matched peer, as the interviewer, did not have the right understanding of the question and attempted to lead me down the wrong path of solving the question. However, this is more of a problem of the candidate than the platform though. - -### Conclusion - -Coding interviews are tough. But fortunately, you can get better at them by studying and practicing for them, and doing mock interviews. -To recap, to do well in coding interviews: - -1. Decide on a programming language -1. Study CS fundamentals -1. Practice solving algorithm questions -1. Internalize the [Do's and Don'ts of interviews](./cheatsheet.md) -1. Practice doing mock interviews -1. Interview successfully to get the job - -By following these steps, you will improve your coding interview skills, and be one step closer (or probably more) to landing your dream job. - -All the best! diff --git a/preparing/cheatsheet.md b/preparing/cheatsheet.md deleted file mode 100644 index 5d2f8ff63..000000000 --- a/preparing/cheatsheet.md +++ /dev/null @@ -1,103 +0,0 @@ -Interview Cheatsheet -== - -This is a straight-to-the-point, distilled list of technical interview Do's and Don'ts, mainly for algorithmic interviews. Some of these may apply to only phone screens or whiteboard interviews, but most will apply to both. I revise this list before each of my interviews to remind myself of them and eventually internalized all of them to the point I do not have to rely on it anymore. - -For a detailed walkthrough of interview preparation, refer to the ["Preparing for a Coding Interview"](./) section. - -**Legend:** ✅ = Do, ❌ = Don't, ⚠️ = Situational - -### 1. Before Interview - -|| Things | -|-|-| -|✅|Prepare pen, paper and earphones/headphones.| -|✅|Find a quiet environment with good Internet connection.| -|✅|Ensure webcam and audio are working. There were times I had to restart Chrome to get Hangouts to work again.| -|✅|Request for the option to interview over Hangouts/Skype instead of a phone call; it is easier to send links or text across.| -|✅|Decide on and be familiar with a programming language.| -|✅|Familiarize yourself with the coding environment (CoderPad/CodePen). Set up the coding shortcuts, turn on autocompletion, tab spacing, etc.| -|✅|Prepare answers to the [frequently-asked questions](../non-technical/behavioral.md) in an interview.| -|✅|Prepare some [questions to ask](../non-technical/questions-to-ask.md) at the end of the interview.| -|✅|Dress comfortably. Usually you do not need to wear smart clothes, casual should be fine. T-shirts and jeans are acceptable at most places.| -|✅|Stay calm and composed.| -|⚠️|Turn off the webcam if possible. Most remote interviews will not require video chat and leaving it on only serves as a distraction.| - -### 2. Introduction - -|| Things | -|-|-| -|✅|Introduce yourself in a few sentences under a minute or two.| -|✅|Mention interesting points that are relevant to the role you are applying for.| -|✅|Sound enthusiastic! Speak with a smile and you will naturally sound more engaging.| -|❌|Spend too long introducing yourself. The more time you spend talking the less time you have to code.| - -### 3. Upon Getting the Question - -|| Things | -|-|-| -|✅|Repeat the question back at the interviewer.| -|✅|Clarify any assumptions you made subconsciously. Many questions are under-specified on purpose. A tree-like diagram could very well be a graph that allows for cycles and a naive recursive solution would not work.| -|✅|Clarify input format and range. Ask whether input can be assumed to be well-formed and non-null.| -|✅|Work through a small example to ensure you understood the question.| -|✅|Explain a high level approach even if it is a brute force one.| -|✅|Improve upon the approach and optimize. Reduce duplicated work and cache repeated computations.| -|✅|Think carefully, then state and explain the time and space complexity of your approaches.| -|✅|If stuck, think about related problems you have seen before and how they were solved. Check out the [tips](../algorithms) in this section.| -|❌|Ignore information given to you. Every piece is important.| -|❌|Jump into coding straightaway.| -|❌|Start coding without interviewer's green light.| -|❌|Appear too unsure about your approach or analysis.| - -### 4. During Coding - -|| Things | -|-|-| -|✅|Explain what you are coding/typing to the interviewer, what you are trying to achieve.| -|✅|Practice good coding style. Clear variable names, consistent operator spacing, proper indentation, etc.| -|✅|Type/write at a reasonable speed.| -|✅|As much as possible, write actual compilable code, not pseudocode.| -|✅|Write in a modular fashion. Extract out chunks of repeated code into functions.| -|✅|Ask for permission to use trivial functions without having to implement them; saves you some time.| -|✅|Use the hints given by the interviewer.| -|✅|Demonstrate mastery of your chosen programming language.| -|✅|Demonstrate technical knowledge in data structures and algorithms.| -|✅|If you are cutting corners in your code, state that out loud to your interviewer and say what you would do in a non-interview setting (no time constraints). E.g., I would write a regex to parse this string rather than using `split()` which may not cover all cases.| -|✅|Practice whiteboard space-management skills.| -|⚠️|Reasonable defensive coding. Check for nulls, empty collections, etc. Can omit if input validity has been clarified with the interviewer.| -|❌|Remain quiet the whole time.| -|❌|Spend too much time writing comments.| -|❌|Use extremely verbose variable names.| -|❌|Copy and paste code without checking.| -|❌|Interrupt your interviewer when they are talking. Usually if they speak, they are trying to give you hints or steer you in the right direction.| -|❌|Write too big (takes up too much space) or too small (illegible) if on a whiteboard.| - -### 5. After Coding - -|| Things | -|-|-| -|✅|Scan through your code for mistakes as if it was your first time seeing code written by someone else.| -|✅|Check for off-by-one errors.| -|✅|Come up with more test cases. Try extreme test cases.| -|✅|Step through your code with those test cases.| -|✅|Look out for places where you can refactor.| -|✅|Reiterate the time and space complexity of your code.| -|✅|Explain trade-offs and how the code/approach can be improved if given more time.| -|❌|Immediately announce that you are done coding. Do the above first!| -|❌|Argue with the interviewer. They may be wrong but that is very unlikely given that they are familiar with the question.| - -### 6. Wrap Up - -|| Things | -|-|-| -|✅|Ask questions. More importantly, ask good and engaging questions that are tailored to the company! Pick some questions from [this list](../non-technical/questions-to-ask.md).| -|✅|Thank the interviewer.| -|⚠️|Ask about your interview performance. It can get awkward.| -|❌|End the interview without asking any questions.| - -### 7. Post Interview - -|| Things | -|-|-| -|✅|Record the interview questions and answers down as these can be useful for future reference.| -|⚠️|Send a follow up email to your interviewer(s) thanking them for their time and the opportunity to interview with them.| diff --git a/front-end/accessibility.md b/topics/accessibility.md similarity index 100% rename from front-end/accessibility.md rename to topics/accessibility.md diff --git a/front-end/browser.md b/topics/browser.md similarity index 100% rename from front-end/browser.md rename to topics/browser.md diff --git a/front-end/caching.md b/topics/caching.md similarity index 100% rename from front-end/caching.md rename to topics/caching.md diff --git a/front-end/css.md b/topics/css.md similarity index 100% rename from front-end/css.md rename to topics/css.md diff --git a/front-end/design.md b/topics/design.md similarity index 100% rename from front-end/design.md rename to topics/design.md diff --git a/front-end/dom.md b/topics/dom.md similarity index 100% rename from front-end/dom.md rename to topics/dom.md diff --git a/front-end/html.md b/topics/html.md similarity index 100% rename from front-end/html.md rename to topics/html.md diff --git a/front-end/javascript.md b/topics/javascript.md similarity index 100% rename from front-end/javascript.md rename to topics/javascript.md diff --git a/front-end/networking.md b/topics/networking.md similarity index 100% rename from front-end/networking.md rename to topics/networking.md diff --git a/front-end/performance.md b/topics/performance.md similarity index 100% rename from front-end/performance.md rename to topics/performance.md diff --git a/front-end/security.md b/topics/security.md similarity index 100% rename from front-end/security.md rename to topics/security.md diff --git a/front-end/widgets.md b/topics/widgets.md similarity index 100% rename from front-end/widgets.md rename to topics/widgets.md diff --git a/utilities/javascript/binToInt.js b/utilities/javascript/binToInt.js deleted file mode 100644 index c34a278de..000000000 --- a/utilities/javascript/binToInt.js +++ /dev/null @@ -1,15 +0,0 @@ -// Does not handle negative binary numbers. -function binToInt(binary) { - let res = 0; - for (let i = 0; i < binary.length; i++) { - res = res * 2 + (+binary[i]); - } - return res; -} - -console.log(binToInt('0') === parseInt('0', 2) && parseInt('0', 2) === 0); -console.log(binToInt('1') === parseInt('1', 2) && parseInt('1', 2) === 1); -console.log(binToInt('10') === parseInt('10', 2) && parseInt('10', 2) === 2); -console.log(binToInt('11') === parseInt('11', 2) && parseInt('11', 2) === 3); -console.log(binToInt('101') === parseInt('101', 2) && parseInt('101', 2) === 5); -console.log(binToInt('1100011') === parseInt('1100011', 2) && parseInt('1100011', 2) === 99); diff --git a/utilities/javascript/binarySearch.js b/utilities/javascript/binarySearch.js deleted file mode 100644 index 9ce8b336e..000000000 --- a/utilities/javascript/binarySearch.js +++ /dev/null @@ -1,26 +0,0 @@ -function binarySearch(arr, target) { - let left = 0; - let right = arr.length - 1; - while (left <= right) { - const mid = left + Math.floor((right - left) / 2); - if (arr[mid] === target) { - return mid; - } - if (arr[mid] < target) { - left = mid + 1; - } else { - right = mid - 1; - } - } - return -1; -} - -console.log(binarySearch([1, 2, 3, 10], 1) === 0); -console.log(binarySearch([1, 2, 3, 10], 2) === 1); -console.log(binarySearch([1, 2, 3, 10], 3) === 2); -console.log(binarySearch([1, 2, 3, 10], 10) === 3); -console.log(binarySearch([1, 2, 3, 10], 9) === -1); -console.log(binarySearch([1, 2, 3, 10], 4) === -1); -console.log(binarySearch([1, 2, 3, 10], 0) === -1); -console.log(binarySearch([1, 2, 3, 10], 11) === -1); -console.log(binarySearch([5, 7, 8, 10], 3) === -1); diff --git a/utilities/javascript/deepEqual.js b/utilities/javascript/deepEqual.js deleted file mode 100644 index ec82255c0..000000000 --- a/utilities/javascript/deepEqual.js +++ /dev/null @@ -1,37 +0,0 @@ -function deepEqual(val1, val2) { - if (typeof val1 !== typeof val2) { - return false; - } - - // Array comparison. - if (Array.isArray(val1) && Array.isArray(val2)) { - if (val1.length !== val2.length) { - return false; - } - for (let i = 0; i < val1.length; i++) { - if (!deepEqual(val1[i], val2[i])) { - return false; - } - } - return true; - } - - // Object comparison. - if (typeof val1 === 'object' && typeof val2 === 'object' && val1 !== null) { - const keys1 = Object.keys(val1), keys2 = Object.keys(val2); - if (keys1.length !== keys2.length) { - return false; - } - for (let i = 0; i < keys1.length; i++) { - if (!deepEqual(val1[keys1[i]], val2[keys2[i]])) { - return false; - } - } - return true; - } - - // Primitive comparison. - return val1 === val2; -} - -module.exports = deepEqual; diff --git a/utilities/javascript/graphTopoSort.js b/utilities/javascript/graphTopoSort.js deleted file mode 100644 index 134680266..000000000 --- a/utilities/javascript/graphTopoSort.js +++ /dev/null @@ -1,35 +0,0 @@ -function graphTopoSort(numberNodes, edges) { - const nodes = new Map(); - const order = []; - const queue = []; - for (let i = 0; i < numberNodes; i++) { - nodes.set(i, { in: 0, out: new Set() }); - } - - edges.forEach(edge => { - const [node_id, pre_id] = edge; - nodes.get(node_id).in += 1; - nodes.get(pre_id).out.add(node_id); - }); - - for (let [node_id, value] of nodes.entries()) { - if (value.in === 0) { - queue.push(node_id); - } - } - - while (queue.length) { - const node_id = queue.shift(); - for (let outgoing_id of nodes.get(node_id).out) { - nodes.get(outgoing_id).in -= 1; - if (nodes.get(outgoing_id).in === 0) { - queue.push(outgoing_id); - } - } - order.push(node_id); - } - - return order.length == numberNodes ? order : []; -} - -console.log(graphTopoSort(3, [[0, 1], [0, 2]])); diff --git a/utilities/javascript/intToBin.js b/utilities/javascript/intToBin.js deleted file mode 100644 index 6d33e7e5d..000000000 --- a/utilities/javascript/intToBin.js +++ /dev/null @@ -1,19 +0,0 @@ -// Does not handle negative numbers. -function intToBin(number) { - if (number === 0) { - return '0'; - } - let res = ''; - while (number > 0) { - res = String(number % 2) + res; - number = parseInt(number / 2, 10); - } - return res; -} - -console.log(intToBin(0) === 0..toString(2) && 0..toString(2) === '0'); -console.log(intToBin(1) === 1..toString(2) && 1..toString(2) === '1'); -console.log(intToBin(2) === 2..toString(2) && 2..toString(2) === '10'); -console.log(intToBin(3) === 3..toString(2) && 3..toString(2) === '11'); -console.log(intToBin(5) === 5..toString(2) && 5..toString(2) === '101'); -console.log(intToBin(99) === 99..toString(2) && 99..toString(2) === '1100011'); diff --git a/utilities/javascript/intervalsIntersect.js b/utilities/javascript/intervalsIntersect.js deleted file mode 100644 index 2c6d59a04..000000000 --- a/utilities/javascript/intervalsIntersect.js +++ /dev/null @@ -1,17 +0,0 @@ -// Interval: [start, end]. -function intervalsIntersect(a, b) { - return a[0] < b[1] && b[0] < a[1]; -} - -console.log(intervalsIntersect([1, 2], [3, 4]) === false); -console.log(intervalsIntersect([1, 2], [2, 4]) === false); -console.log(intervalsIntersect([1, 2], [1, 4]) === true); -console.log(intervalsIntersect([1, 2], [0, 4]) === true); -console.log(intervalsIntersect([1, 2], [0, 2]) === true); -console.log(intervalsIntersect([1, 2], [0, 1.5]) === true); -console.log(intervalsIntersect([3, 4], [1, 2]) === false); -console.log(intervalsIntersect([2, 4], [1, 2]) === false); -console.log(intervalsIntersect([1, 4], [1, 2]) === true); -console.log(intervalsIntersect([0, 4], [1, 2]) === true); -console.log(intervalsIntersect([0, 2], [1, 2]) === true); -console.log(intervalsIntersect([0, 1.5], [1, 2]) === true); diff --git a/utilities/javascript/intervalsMerge.js b/utilities/javascript/intervalsMerge.js deleted file mode 100644 index 795ca37a2..000000000 --- a/utilities/javascript/intervalsMerge.js +++ /dev/null @@ -1,16 +0,0 @@ -// Interval: [start, end]. -// Merges two overlapping intervals into one. -function intervalsMerge(a, b) { - return [Math.min(a[0], b[0]), Math.max(a[1], b[1])]; -} - -const deepEqual = require('./deepEqual'); - -console.log(deepEqual(intervalsMerge([1, 2], [1, 4]), [1, 4])); -console.log(deepEqual(intervalsMerge([1, 2], [0, 4]), [0, 4])); -console.log(deepEqual(intervalsMerge([1, 2], [0, 2]), [0, 2])); -console.log(deepEqual(intervalsMerge([1, 2], [0, 1.5]), [0, 2])); -console.log(deepEqual(intervalsMerge([1, 4], [1, 2]), [1, 4])); -console.log(deepEqual(intervalsMerge([0, 4], [1, 2]), [0, 4])); -console.log(deepEqual(intervalsMerge([0, 2], [1, 2]), [0, 2])); -console.log(deepEqual(intervalsMerge([0, 1.5], [1, 2]), [0, 2])); diff --git a/utilities/javascript/isSubsequence.js b/utilities/javascript/isSubsequence.js deleted file mode 100644 index b529399c9..000000000 --- a/utilities/javascript/isSubsequence.js +++ /dev/null @@ -1,19 +0,0 @@ -function isSubsequence(s, t) { - if (s.length > t.length) { - return false; - } - let matchedLength = 0; - for (let i = 0; i < t.length; i++) { - if (matchedLength < s.length && s[matchedLength] === t[i]) { - matchedLength += 1; - } - } - return matchedLength === s.length; -} - -console.log(isSubsequence('abc', 'abcde') === true); -console.log(isSubsequence('abd', 'abcde') === true); -console.log(isSubsequence('abf', 'abcde') === false); -console.log(isSubsequence('abef', 'abcde') === false); -console.log(isSubsequence('abcdef', 'abcde') === false); -console.log(isSubsequence('a', 'abcde') === true); diff --git a/utilities/javascript/matrixClone.js b/utilities/javascript/matrixClone.js deleted file mode 100644 index b3f3f996f..000000000 --- a/utilities/javascript/matrixClone.js +++ /dev/null @@ -1,18 +0,0 @@ -function matrixClone(matrix, defaultValue) { - return matrix.map(row => { - return defaultValue === undefined ? row.slice(0) : Array(row.length).fill(defaultValue); - }); -} - -const deepEqual = require('./deepEqual'); - -// Test clone. -const a = [[1, 2], [1, 4]]; -console.log(deepEqual(matrixClone(a), [[1, 2], [1, 4]])); -a[0][0] = 4; -console.log(deepEqual(matrixClone(a), [[1, 2], [1, 4]]) === false); -console.log(deepEqual(matrixClone([[1]]), [[1]])); - -// Test clone with default value. -console.log(deepEqual(matrixClone([[1, 2], [1, 4]], 1), [[1, 1], [1, 1]])); -console.log(deepEqual(matrixClone([[1, 2], [1, 4]], null), [[null, null], [null, null]])); diff --git a/utilities/javascript/matrixTranspose.js b/utilities/javascript/matrixTranspose.js deleted file mode 100644 index 0418a4269..000000000 --- a/utilities/javascript/matrixTranspose.js +++ /dev/null @@ -1,11 +0,0 @@ -function matrixTranspose(matrix) { - return matrix[0].map((col, i) => matrix.map(row => row[i])); -} - -const deepEqual = require('./deepEqual'); - -console.log(deepEqual(matrixTranspose([[1]]), [[1]])); -console.log(deepEqual(matrixTranspose([[1, 2]]), [[1], [2]])); -console.log(deepEqual(matrixTranspose([[1, 2], [1, 4]]), [[1, 1], [2, 4]])); -console.log(deepEqual(matrixTranspose([[1, 2, 3], [4, 5, 6]]), [[1, 4], [2, 5], [3, 6]])); - diff --git a/utilities/javascript/matrixTraverse.js b/utilities/javascript/matrixTraverse.js deleted file mode 100644 index 331a24e4f..000000000 --- a/utilities/javascript/matrixTraverse.js +++ /dev/null @@ -1,28 +0,0 @@ -function traverse(matrix) { - const DIRECTIONS = [[0, 1], [0, -1], [1, 0], [-1, 0]]; - const rows = matrix.length, cols = matrix[0].length; - const visited = matrix.map(row => Array(row.length).fill(false)); - function dfs(i, j) { - if (visited[i][j]) { - return; - } - visited[i][j] = true; - DIRECTIONS.forEach(dir => { - const row = i + dir[0], col = j + dir[1]; - // Boundary check. - if (row < 0 || row >= rows || col < 0 || col >= cols) { - return; - } - // Valid neighbor check. - if (matrix[row][col] !== 1) { - return; - } - dfs(row, col); - }); - } - for (let i = 0; i < rows; i++) { - for (let j = 0; j < cols; j++) { - dfs(i, j); - } - } -} diff --git a/utilities/javascript/mergeSort.js b/utilities/javascript/mergeSort.js deleted file mode 100644 index d66537fda..000000000 --- a/utilities/javascript/mergeSort.js +++ /dev/null @@ -1,60 +0,0 @@ -function mergeSort(arr) { - if (arr.length < 2) { - // Arrays of length 0 or 1 are sorted by definition. - return arr; - } - - const left = arr.slice(0, Math.floor(arr.length / 2)); - const right = arr.slice(Math.floor(arr.length / 2), Math.floor(arr.length)); - - return merge(mergeSort(left), mergeSort(right)); -} - -function merge(arr1, arr2) { - const merged = []; - let i = 0, j = 0; - - while (i < arr1.length && j < arr2.length) { - if (arr1[i] <= arr2[j]) { - merged.push(arr1[i]); - i++; - } else if (arr2[j] < arr1[i]) { - merged.push(arr2[j]); - j++; - } - } - - merged.push(...arr1.slice(i), ...arr2.slice(j)); - return merged; -} - -const deepEqual = require('./deepEqual'); - -console.log(deepEqual( - mergeSort([]), - [], -)); -console.log(deepEqual( - mergeSort([1]), - [1], -)); -console.log(deepEqual( - mergeSort([2, 1]), - [1, 2], -)); -console.log(deepEqual( - mergeSort([7, 2, 4, 3, 1, 2]), - [1, 2, 2, 3, 4, 7], -)); -console.log(deepEqual( - mergeSort([1, 2, 3, 4, 5, 0]), - [0, 1, 2, 3, 4, 5], -)); -console.log(deepEqual( - mergeSort([10, 9, 8, 7, 6, 5, 4, 3, 2, 1]), - [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], -)); -console.log(deepEqual( - mergeSort([98322, 3242, 876, -234, 34, 12331]), - [-234, 34, 876, 3242, 12331, 98322], -)); diff --git a/utilities/javascript/treeEqual.js b/utilities/javascript/treeEqual.js deleted file mode 100644 index 107746196..000000000 --- a/utilities/javascript/treeEqual.js +++ /dev/null @@ -1,11 +0,0 @@ -function treeEqual(node1, node2) { - if (!node1 && !node2) { - return true; - } - if (!node1 || !node2) { - return false; - } - return node1.val == node2.val && - treeEqual(node1.left, node2.left) && - treeEqual(node1.right, node2.right); -} diff --git a/utilities/javascript/treeMirror.js b/utilities/javascript/treeMirror.js deleted file mode 100644 index 63d371553..000000000 --- a/utilities/javascript/treeMirror.js +++ /dev/null @@ -1,10 +0,0 @@ -function treeMirror(node) { - if (!node) { - return; - } - let temp = node.left; - node.left = node.right; - node.right = temp; - treeMirror(node.left); - treeMirror(node.right); -} diff --git a/utilities/python/binary_search.py b/utilities/python/binary_search.py deleted file mode 100644 index 4e664c729..000000000 --- a/utilities/python/binary_search.py +++ /dev/null @@ -1,69 +0,0 @@ -def binary_search(arr, target): - left = 0; - right = len(arr) - 1 - while left <= right: - mid = left + (right - left) // 2; - if arr[mid] == target: - return mid - elif arr[mid] < target: - left = mid + 1 - else: - right = mid - 1 - return -1 - -def bisect_left(arr, target): - """Returns the leftmost position that `target` should - go to such that the sequence remains sorted.""" - left = 0 - right = len(arr) - while left < right: - mid = (left + right) // 2 - if arr[mid] < target: - left = mid + 1 - else: - right = mid - return left - -def bisect_right(arr, target): - """Returns the rightmost position that `target` should - go to such that the sequence remains sorted.""" - left = 0 - right = len(arr) - while left < right: - mid = (left + right) // 2 - if arr[mid] > target: - right = mid - else: - left = mid + 1 - return left - -print(binary_search([1, 2, 3, 10], 1) == 0) -print(binary_search([1, 2, 3, 10], 2) == 1) -print(binary_search([1, 2, 3, 10], 3) == 2) -print(binary_search([1, 2, 3, 10], 10) == 3) -print(binary_search([1, 2, 3, 10], 9) == -1) -print(binary_search([1, 2, 3, 10], 4) == -1) -print(binary_search([1, 2, 3, 10], 0) == -1) -print(binary_search([1, 2, 3, 10], 11) == -1) -print(binary_search([5, 7, 8, 10], 3) == -1) - -print(bisect_left([1, 2, 3, 3, 10], 1) == 0) -print(bisect_left([1, 2, 3, 3, 10], 2) == 1) -print(bisect_left([1, 2, 3, 3, 10], 3) == 2) # First "3" is at index 2 -print(bisect_left([1, 2, 3, 3, 10], 10) == 4) - -# These return a valid index despite target not being in array. -print(bisect_left([1, 2, 3, 3, 10], 9) == 4) -print(bisect_left([1, 2, 3, 3, 10], 0) == 0) # Insert "0" at front -print(bisect_left([1, 2, 3, 3, 10], 11) == 5) # Insert "5" at back - -print(bisect_right([1, 2, 3, 3, 10], 1) == 1) -print(bisect_right([1, 2, 3, 3, 10], 2) == 2) -print(bisect_right([1, 2, 3, 3, 10], 3) == 4) # Last "3" is at index 3, so insert new "3" at index 4 -print(bisect_right([1, 2, 3, 3, 10], 10) == 5) - -# These return a valid index despite target not being in array. -print(bisect_right([1, 2, 3, 3, 10], 9) == 4) -print(bisect_right([1, 2, 3, 3, 10], 0) == 0) # Insert "0" at front -print(bisect_right([1, 2, 3, 3, 10], 11) == 5) # Insert "5" at back - diff --git a/utilities/python/char_prime_map.py b/utilities/python/char_prime_map.py deleted file mode 100644 index 67713b9d6..000000000 --- a/utilities/python/char_prime_map.py +++ /dev/null @@ -1,19 +0,0 @@ -# For mapping a lowercase character to a prime number. -# Useful for checking whether two strings are anagram or permutations of each other. -primes = { - 'a': 2, 'b': 3, 'c': 5, 'd': 7, 'e': 11, 'f': 13, - 'g': 17, 'h': 19, 'i': 23, 'j': 29, 'k': 31, 'l': 37, - 'm': 41, 'n': 43, 'o': 47, 'p': 53, 'q': 59, 'r': 61, - 's': 67, 't': 71, 'u': 73, 'v': 79, 'w': 83, 'x': 89, - 'y': 97, 'z': 101, ' ': 103, -} - -import functools - -def mul(seq): - return functools.reduce(lambda a, b: a * b, seq, 1) - -def prime_value_of_string(string): - return mul([primes[c] for c in string]) - -print(prime_value_of_string('abcde')) diff --git a/utilities/python/graph_dfs.py b/utilities/python/graph_dfs.py deleted file mode 100644 index 7e0cd737d..000000000 --- a/utilities/python/graph_dfs.py +++ /dev/null @@ -1,24 +0,0 @@ -def graph_dfs(matrix): - rows, cols = len(matrix), len(matrix[0]) - visited = set() - directions = ((0, 1), (0, -1), (1, 0), (-1, 0)) - def dfs(i, j): - if (i, j) in visited: - return - visited.add((i, j)) - # Traverse neighbors. - for direction in directions: - next_i, next_j = i + direction[0], j + direction[1] - if 0 <= next_i < rows and 0 <= next_j < cols: # Check boundary. - # Add any other checking here ^ - dfs(next_i, next_j) - - for i in range(rows): - for j in range(cols): - dfs(i, j) - -graph_dfs([ - [1, 2, 3, 4], - [5, 6, 7, 8], - [9, 10, 11, 12], -]) diff --git a/utilities/python/graph_topo_sort.py b/utilities/python/graph_topo_sort.py deleted file mode 100644 index 011c656fa..000000000 --- a/utilities/python/graph_topo_sort.py +++ /dev/null @@ -1,21 +0,0 @@ -def graph_topo_sort(num_nodes, edges): - from collections import deque - nodes, order, queue = {}, [], deque() - for node_id in range(num_nodes): - nodes[node_id] = { 'in': 0, 'out': set() } - for node_id, pre_id in edges: - nodes[node_id]['in'] += 1 - nodes[pre_id]['out'].add(node_id) - for node_id in nodes.keys(): - if nodes[node_id]['in'] == 0: - queue.append(node_id) - while len(queue): - node_id = queue.pop() - for outgoing_id in nodes[node_id]['out']: - nodes[outgoing_id]['in'] -= 1 - if nodes[outgoing_id]['in'] == 0: - queue.append(outgoing_id) - order.append(node_id) - return order if len(order) == num_nodes else [] - -print(graph_topo_sort(3, [[0, 1], [0, 2]])) diff --git a/utilities/python/heap.py b/utilities/python/heap.py deleted file mode 100644 index 4bbb926f6..000000000 --- a/utilities/python/heap.py +++ /dev/null @@ -1,84 +0,0 @@ -# Implements a min-heap. For max-heap, simply reverse all comparison orders. -# -# Note on alternate subroutine namings (used in some textbooks): -# - _bubble_up = siftdown -# - _bubble_down = siftup - -def _bubble_up(heap, i): - while i > 0: - parent_i = (i - 1) // 2 - if heap[i] < heap[parent_i]: - heap[i], heap[parent_i] = heap[parent_i], heap[i] - i = parent_i - continue - break - -def _bubble_down(heap, i): - startpos = i - newitem = heap[i] - left_i = 2 * i + 1 - while left_i < len(heap): - # Pick the smaller of the L and R children - right_i = left_i + 1 - if right_i < len(heap) and not heap[left_i] < heap[right_i]: - child_i = right_i - else: - child_i = left_i - - # Break if heap invariant satisfied - if heap[i] < heap[child_i]: - break - - # Move the smaller child up. - heap[i], heap[child_i] = heap[child_i], heap[i] - i = child_i - left_i = 2 * i + 1 - -def heapify(lst): - for i in reversed(range(len(lst) // 2)): - _bubble_down(lst, i) - -def heappush(heap, item): - heap.append(item) - _bubble_up(heap, len(heap) - 1) - -def heappop(heap): - if len(heap) == 1: - return heap.pop() - min_value = heap[0] - heap[0] = heap[-1] - del heap[-1] - _bubble_down(heap, 0) - return min_value - - - -# Example usage -heap = [3, 2, 1, 0] -heapify(heap) -print('Heap(0, 1, 2, 3):', heap) -heappush(heap, 4) -heappush(heap, 7) -heappush(heap, 6) -heappush(heap, 5) -print('Heap(0, 1, 2, 3, 4, 5, 6, 7):', heap) - -sorted_list = [heappop(heap) for _ in range(8)] -print('Heap-sorted list:', sorted_list) - -# Large test case, for randomized tests -import random - -# Heapify 0 ~ 99 -heap = list(range(100)) -random.shuffle(heap) -heapify(heap) - -# Push 100 ~ 199 in random order -new_elems = list(range(100, 200)) -random.shuffle(new_elems) -for elem in new_elems: - heappush(heap, elem) - -sorted_list = [heappop(heap) for _ in range(200)] -print(sorted_list == sorted(sorted_list)) diff --git a/utilities/python/is_subsequence.py b/utilities/python/is_subsequence.py deleted file mode 100644 index 4d244c12f..000000000 --- a/utilities/python/is_subsequence.py +++ /dev/null @@ -1,13 +0,0 @@ -def is_subsequence(s, t): - """ - :type s: str - :type t: str - :rtype: bool - """ - if len(s) > len(t): - return False - matched_s = 0 - for char in t: - if matched_s < len(s) and s[matched_s] == char: - matched_s += 1 - return matched_s == len(s) diff --git a/utilities/python/linked_list.py b/utilities/python/linked_list.py deleted file mode 100644 index af0a7eb98..000000000 --- a/utilities/python/linked_list.py +++ /dev/null @@ -1,109 +0,0 @@ -# Singly-Linked List -# -# The linked list is passed around as a variable pointing to the -# root node of the linked list, or None if the list is empty. - -class LinkedListNode: - def __init__(self, value): - self.value = value - self.next = None - -def linked_list_append(linked_list, value): - '''Appends a value to the end of the linked list''' - node = linked_list - insert_node = LinkedListNode(value) - if not node: - return insert_node - while node.next: - node = node.next - node.next = insert_node - return linked_list - -def linked_list_insert_index(linked_list, value, index): - '''Inserts a value at a particular index''' - node = linked_list - insert_node = LinkedListNode(value) - - # Check if inserting at head - if index == 0: - insert_node.next = node - return insert_node - - # Skip ahead - for _ in range(index - 1): - node = node.next - if not node: - raise ValueError - insert_node.next = node.next - node.next = insert_node - return linked_list - -def linked_list_delete(linked_list, value): - '''Deletes the first occurrence of a value in the linked list''' - node = linked_list - - # Check if deleting at head - if node.value == value: - return node.next - - # Skip ahead - while node.next: - if node.next.value == value: - node.next = node.next.next - return linked_list - node = node.next - raise ValueError - -def linked_list_delete_index(linked_list, index): - '''Deletes the element at a particular index in the linked list''' - node = linked_list - - # Check if deleting at head - if index == 0: - return node.next - - # Skip ahead - for _ in range(index - 1): - node = node.next - if not node: - raise ValueError - if not node.next: - raise ValueError - node.next = node.next.next - return linked_list - -def linked_list_iter(linked_list): - '''Lazy iterator over each node in the linked list''' - node = linked_list - while node is not None: - yield node - node = node.next - - -# Append to back -linked_list = None # Start with an empty linked list -linked_list = linked_list_append(linked_list, 1) -linked_list = linked_list_append(linked_list, 2) -linked_list = linked_list_append(linked_list, 4) -print([node.value for node in linked_list_iter(linked_list)]) - -# Insert by index -linked_list = linked_list_insert_index(linked_list, 0, 0) # Front -print([node.value for node in linked_list_iter(linked_list)]) -linked_list = linked_list_insert_index(linked_list, 3, 3) # Back -print([node.value for node in linked_list_iter(linked_list)]) - -# Delete "3" -linked_list = linked_list_delete(linked_list, 3) -print([node.value for node in linked_list_iter(linked_list)]) - -# Delete by index -linked_list = linked_list_delete_index(linked_list, 0) -print([node.value for node in linked_list_iter(linked_list)]) -linked_list = linked_list_delete_index(linked_list, 1) -print([node.value for node in linked_list_iter(linked_list)]) - -# Delete until empty -linked_list = linked_list_delete_index(linked_list, 0) -linked_list = linked_list_delete_index(linked_list, 0) -print([node.value for node in linked_list_iter(linked_list)]) diff --git a/utilities/python/quick_select.py b/utilities/python/quick_select.py deleted file mode 100644 index c121d0d43..000000000 --- a/utilities/python/quick_select.py +++ /dev/null @@ -1,60 +0,0 @@ -## QuickSelect -- Linear-time k-th order statistic -## (i.e. select the k-th smallest element in an unsorted array) -## https://en.wikipedia.org/wiki/Quickselect - -def partition(array, start, end, pivot): - """Partitions by a pivot value, which might not necessarily be in the array. - This variant is useful when you want to bound your recursion depth by the - range of the input values, and not the length of the array.""" - pivot_index = start - for i in range(start, end): - if array[i] <= pivot: - array[i], array[pivot_index] = array[pivot_index], array[i] - pivot_index += 1 - return pivot_index - -import random -def partition_first(array, start, end): - """Selects the first element as pivot. Returns the index where the pivot went to. - In this variant, we can guarantee that the pivot will be in its final sorted position. - We need this guarantee for QuickSelect.""" - if start + 1 == end: - return start - pivot = array[start] - pivot_index = start + 1 - for i in range(start + 1, end): - if array[i] <= pivot: - array[i], array[pivot_index] = array[pivot_index], array[i] - pivot_index += 1 - # Move pivot to front - array[start], array[pivot_index - 1] = array[pivot_index - 1], array[start] - return pivot_index - 1 - -def quick_select(array, k): - """NOTE: k-th smallest element counts from 0!""" - left = 0 - right = len(array) - while True: - random_index = random.sample(range(left, right), 1)[0] - array[left], array[random_index] = array[random_index], array[left] - pivot_index = partition_first(array, left, right) - if k == pivot_index: - return array[pivot_index] - if k < pivot_index: - right = pivot_index - else: - left = pivot_index + 1 - - - -print(quick_select([0], 0) == 0) -print(quick_select([0, 1, 2, 3, 4], 2) == 2) -print(quick_select([4, 3, 2, 1, 0], 2) == 2) -print(quick_select([1, 3, 4, 2, 0], 2) == 2) - -# Large test case, for randomized tests -lst = list(range(1000)) -for _ in range(10): - k = random.randint(0, 999) - random.shuffle(lst) - print(quick_select(lst, k) == k) diff --git a/utilities/python/rabin_karp_hash.py b/utilities/python/rabin_karp_hash.py deleted file mode 100644 index 9f0fd1050..000000000 --- a/utilities/python/rabin_karp_hash.py +++ /dev/null @@ -1,41 +0,0 @@ -## Rabin-Karp Rolling Hash -## Implementation of: https://en.wikipedia.org/wiki/Rabin%E2%80%93Karp_algorithm#Hash_function_used -## -## This rolling hash function is useful when you need to compute the hash of successive substrings -## of text. E.g. note that going from 'abcd' to 'bcde', we drop the 'a' from the back and add an 'e' -## on the right. The rolling hash function thus allows us to update the hash in-place O(1) instead of -## recomputing the full hash of the substring O(m), where m is the length of the substring. -## -## NOTE: The implementation below takes in a tuple of integers, to be as general as possible. For use -## with strings, simply take the ASCII value of each character before passing into the functions. - -BASE = 101 # Arbitrary prime number - -def rk_hash_init(tpl): - '''Initializes the hash with a tuple of integers.''' - return sum(n * BASE ** i for i, n in enumerate(reversed(tpl))) - -def rk_hash_update(curr_hash, size, add_n, rem_n): - '''Updates the hash by removing an integer from the left and appending - an integer to the right. - - curr_hash: The previous hash - size: The size of the rolling window - add_n: The integer appended to the right - rem_n: The integer removed from the left''' - return (curr_hash - (rem_n * BASE ** (size - 1))) * BASE + add_n - - - -abc_hash = rk_hash_init(tuple(map(ord, 'abc'))) # Init the hash with 'abc' -print('abc:', abc_hash) -bcd_hash_1 = rk_hash_update(abc_hash, 3, ord('d'), ord('a')) # Add a 'd' to the right, remove an 'a' from the left -print('bcd 1:', bcd_hash_1) - -zbc_hash = rk_hash_init(tuple(map(ord, 'zbc'))) # Init the hash with 'zbc' -print('zbc:', zbc_hash) -bcd_hash_2 = rk_hash_update(zbc_hash, 3, ord('d'), ord('z')) # Add a 'd' to the right, remove a 'z' from the left -print('bcd 2:', bcd_hash_2) - -# Notice that both hash values are the same despite arriving via different paths -print(bcd_hash_1 == bcd_hash_2) diff --git a/utilities/python/tree_equal.py b/utilities/python/tree_equal.py deleted file mode 100644 index c00118b71..000000000 --- a/utilities/python/tree_equal.py +++ /dev/null @@ -1,8 +0,0 @@ -def tree_equal(node1, node2): - if not node1 and not node2: - return True - if not node1 or not node2: - return False - return node1.val == node2.val and \ - tree_equal(node1.left, node2.left) and \ - tree_equal(node1.right, node2.right) diff --git a/utilities/python/tree_mirror.py b/utilities/python/tree_mirror.py deleted file mode 100644 index c067fcc72..000000000 --- a/utilities/python/tree_mirror.py +++ /dev/null @@ -1,6 +0,0 @@ -def tree_mirror(node): - if not node: - return - node.left, node.right = node.right, node.left - tree_mirror(node.left) - tree_mirror(node.right) diff --git a/utilities/python/tree_traversal.py b/utilities/python/tree_traversal.py deleted file mode 100644 index 47289780e..000000000 --- a/utilities/python/tree_traversal.py +++ /dev/null @@ -1,62 +0,0 @@ -# Various iterative ways of traversing a tree. -def inorder_traversal(root): - """ - :type root: TreeNode - :rtype: List[int] - """ - if not root: - return [] - result = [] - stack = [root] - while len(stack) > 0: - curr_node = stack.pop() - if curr_node.left: - stack.append(curr_node) - stack.append(curr_node.left) - curr_node.left = None - else: - result.append(curr_node.val) - if curr_node.right: - stack.append(curr_node.right) - return result - -def preorder_traversal(root): - """ - :type root: TreeNode - :rtype: List[int] - """ - if not root: - return [] - result = [] - stack = [root] - while len(stack) > 0: - curr_node = stack.pop() - result.append(curr_node.val) - if curr_node.right: - stack.append(curr_node.right) - if curr_node.left: - stack.append(curr_node.left) - return result - -def postorder_traversal(root): - """ - :type root: TreeNode - :rtype: List[int] - """ - if not root: - return [] - result = [] - stack = [root] - while len(stack) > 0: - curr_node = stack.pop() - if curr_node.left: - stack.append(curr_node) - stack.append(curr_node.left) - curr_node.left = None - elif curr_node.right: - stack.append(curr_node) - stack.append(curr_node.right) - curr_node.right = None - else: - result.append(curr_node.val) - return result diff --git a/utilities/python/trie.py b/utilities/python/trie.py deleted file mode 100644 index fdc62a77c..000000000 --- a/utilities/python/trie.py +++ /dev/null @@ -1,80 +0,0 @@ -class Trie(object): - def __init__(self): - """ - Initialize your data structure here. - """ - self.d = {} - - def insert(self, word): - """ - Inserts a word into the trie. - :type word: str - :rtype: void - """ - curr = self.d - for char in word: - if char not in curr: - curr[char] = {} - curr = curr[char] - curr['#'] = {} # Using an empty dict rather than a boolean value makes recursive traversal easier. - - def search(self, word): - """ - Returns if the word is in the trie. - :type word: str - :rtype: bool - """ - curr = self.d - for char in word: - if char in curr: - curr = curr[char] - else: - return False - return '#' in curr - - def startsWith(self, prefix): - """ - Returns if there is any word in the trie that starts with the given prefix. - :type prefix: str - :rtype: bool - """ - curr = self.d - for char in prefix: - if char in curr: - curr = curr[char] - else: - return False - return True - - def searchRegex(self, word): - """ - Returns if the word is in the data structure. A word could contain the dot character '.' to represent any one letter. - :type word: str - :rtype: bool - """ - def traverse(node, index): - if len(word) == index: - return '#' in node - char = word[index] - if char == '.': - for key in node.keys(): - if traverse(node[key], index+1): - return True - return False - else: - if char not in node: - return False - return traverse(node[char], index + 1) - return traverse(self.d, 0) - -# Example -trie = Trie() -trie.insert('hello') -print(trie.search('hello') == True) -print(trie.startsWith('hello') == True) -print(trie.startsWith('hel') == True) -print(trie.search('world') == False) -print(trie.startsWith('wor') == False) -print(trie.searchRegex('..llo') == True) -print(trie.searchRegex('..llx') == False) -print(trie.searchRegex('..') == False) diff --git a/utilities/python/union_find.py b/utilities/python/union_find.py deleted file mode 100644 index e2f0427d3..000000000 --- a/utilities/python/union_find.py +++ /dev/null @@ -1,50 +0,0 @@ -## Union-Find data structure -## https://en.wikipedia.org/wiki/Disjoint-set_data_structure - -parents = [0, 1, 2, 3, 4, 5, 6] # parent[i] is the parent of i -weights = [1, 1, 1, 1, 1, 1, 1] - -def find_root(parents, p): - '''Average: O(log n)''' - root = p - while parents[root] != root: - root = parents[root] - # Flatten tree - while parents[p] != p: - parents[p], p = root, parents[p] - return root - -def union(parents, p, q): - '''Average: O(log n)''' - p = find_root(parents, p) - q = find_root(parents, q) - # Link the smaller node to the larger node - if weights[p] > weights[q]: - parents[q] = p - weights[p] += weights[q] - else: - parents[p] = q - weights[q] += weights[p] - - - -# Start with all elements separate -# -> [0], [1], [2], [3], [4], [5], [6] -print(find_root(parents, 2) == 2) - -# Merge 1, 2, 3 and 4, 5, 6 -# -> [0], [1, 2, 3], [4, 5, 6] -union(parents, 1, 2) -union(parents, 2, 3) -union(parents, 4, 5) -union(parents, 4, 6) - -# Roots of 1, 2, 3 and 4, 5, 6 are the same -print(find_root(parents, 0)) -print(list(find_root(parents, i) for i in (1, 2, 3))) -print(list(find_root(parents, i) for i in (4, 5, 6))) - -# Merge 2, 4 -# -> [0], [1, 2, 3, 4, 5, 6] -union(parents, 2, 4) -print(list(find_root(parents, i) for i in (1, 2, 3, 4, 5, 6)))