Skip to content

Commit 9335588

Browse files
committed
Add more exercises
1 parent 155d5df commit 9335588

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

bits/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Bit operations exercises
1+
# Bit operations
22

33
Here are a few exercises on bit operations.
44

bits/exercises.py

+28
Original file line numberDiff line numberDiff line change
@@ -94,3 +94,31 @@ def replace_lowest_byte(a, b):
9494
'''
9595

9696
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+
return 0

0 commit comments

Comments
 (0)