From 7bd76a1f6188695b07b2049c871cfad33a8178c5 Mon Sep 17 00:00:00 2001 From: Anthony Morris Date: Sat, 19 Jan 2019 16:54:42 -0800 Subject: [PATCH] Add missing y --- contents/bitlogic/bitlogic.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contents/bitlogic/bitlogic.md b/contents/bitlogic/bitlogic.md index 001b58676..f336dd7d2 100644 --- a/contents/bitlogic/bitlogic.md +++ b/contents/bitlogic/bitlogic.md @@ -5,7 +5,7 @@ In the end, whenever we write code, all of the data structures we write are tran That said, it's not always obvious how this happens, so let's start the simple case of integer numbers. ## Integers -For integer numbers, 0 is still 0 and 1 is still 1; however, for 2, we need to use 2 digits because binary only has 0's and 1's. When we get to 4, we'll need 3 digits and when we get to 8, we'll need 4. Ever time we cross a power of 2, we'll need to add a new digit. Here's a table of the first 10 integers in binary: +For integer numbers, 0 is still 0 and 1 is still 1; however, for 2, we need to use 2 digits because binary only has 0's and 1's. When we get to 4, we'll need 3 digits and when we get to 8, we'll need 4. Every time we cross a power of 2, we'll need to add a new digit. Here's a table of the first 10 integers in binary: | Integer Number | Binary Number | | -------------- | ------------- |