We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 155d5df commit 9335588Copy full SHA for 9335588
bits/README.md
@@ -1,4 +1,4 @@
1
-# Bit operations exercises
+# Bit operations
2
3
Here are a few exercises on bit operations.
4
bits/exercises.py
@@ -94,3 +94,31 @@ def replace_lowest_byte(a, b):
94
'''
95
96
return 0
97
+
98
99
+def bit_mask(n):
100
+ '''
101
+ Return a number consisting of 1s in N lowest positions.
102
103
+ >>> bin(bit_mask(4))
104
+ '0b1111'
105
106
+ >>> bin(bit_mask(7))
107
+ '0b1111111'
108
109
110
+ return 0
111
112
113
+def n_lowest(a, n):
114
115
+ Truncate a number to N lowest bits.
116
117
+ >>> bin(n_lowest(0b100100, 3))
118
+ '0b100'
119
120
+ >>> hex(n_lowest(0xdeadbeef, 16))
121
+ '0xbeef'
122
123
124
0 commit comments