Skip to content

Instantly share code, notes, and snippets.

@normand1
normand1 / The Technical Interview Cheat Sheet.md
Created June 27, 2019 04:25 — forked from prashant-shahi/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.

Studying for a Tech Interview Sucks, so Here's a Cheat Sheet to Help

This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.

Big-O Complexity Chart

Data Structure Basics

Common Data Structure operations

@normand1
normand1 / git-export
Created July 17, 2016 18:24 — forked from kristofferh/git-export
"Export" a git repository to zip file
git archive --format zip --output /full/path/to/zipfile.zip master
@normand1
normand1 / swift-vs-objc.md
Last active August 29, 2015 14:25 — forked from raheelahmad/swift-vs-objc.md
Swift vs. Objective-C

Swift vs. Objective-C

Why Swift would be a better choice for the next production app.

Strong typing

  • correctness at compile time (besides behavior)
  • types as proofs (... illegal is impossible)
    • vs. testing
  • Examples