We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d727b3c commit 861415cCopy full SHA for 861415c
src/main/java/com/rampatra/bits/README.md
@@ -9,7 +9,7 @@
9
| 0 | 0 | 0 |
10
| 0 | 1 | 0 |
11
| 1 | 0 | 0 |
12
-| 1 | 1 | 1 |
+| 1 | 1 | 1 |
13
14
**OR:**
15
@@ -38,7 +38,7 @@
38
39
> 00000001 << 3 = 00001000 (only showing 8 bits)
40
41
-### 2. Right Shift:
+#### 2. Right Shift:
42
43
**Two types:**
44
@@ -50,15 +50,15 @@
50
51
-64 >> 2 = -16
52
53
- 111000000 >> 2 = 11110000
+> 111000000 >> 2 = 11110000
54
55
**b. Unsigned Right Shift (>>>):**
56
57
64 >>> 2 = 16
58
59
- 001000000 >>> 2 = 00010000
+> 001000000 >>> 2 = 00010000
60
61
-64 >>> 2 =
62
63
- 111000000 >>> 2 = 00010000
+> 111000000 >>> 2 = 00010000
64
0 commit comments