Skip to content

Instantly share code, notes, and snippets.

View ben8p's full-sized avatar

Benjamin Santalucia ben8p

View GitHub Profile
@ben8p
ben8p / The Technical Interview Cheat Sheet.md
Last active July 14, 2016 18:41 — forked from tsiege/The Technical Interview Cheat Sheet.md
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

Tech Interview Cheat Sheet

Data Structure Basics

Array

Definition:

  • Stores data elements based on an sequential, most commonly 0 based, index.
  • Based on tuples (a finite ordered list of elements) from set theory.
  • They are one of the oldest, most commonly used data structures.