From 0d0a2506f78fd2eff1b1ee7a377cade9687488e8 Mon Sep 17 00:00:00 2001 From: John Washam Date: Sun, 24 Jul 2016 16:48:52 -0700 Subject: [PATCH] Added link to bits cheat sheet. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 692d5fa..bc53ac8 100644 --- a/README.md +++ b/README.md @@ -347,6 +347,7 @@ Then test it out on a computer to make sure it's not buggy from syntax. - binary search using recursion - [x] **Bitwise operations** + - [x] [Bits cheat sheet](https://github.com/jwasham/google-interview-university/blob/master/extras/bits-cheat-cheet.pdf) - you should know many of the powers of 2 from (2^1 to 2^16 and 2^32) - [x] Get a really good understanding of manipulating bits with: &, |, ^, ~, >>, << - [x] words: https://en.wikipedia.org/wiki/Word_(computer_architecture) - [x] Good intro: