We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29a9203 commit b9a0356Copy full SHA for b9a0356
scripts/algorithms/D/Design Bitset/Design Bitset.py
@@ -1,3 +1,4 @@
1
+# Runtime: 1967 ms (Top 8.78%) | Memory: 45.4 MB (Top 61.95%)
2
class Bitset(object):
3
4
def __init__(self, size):
@@ -30,4 +31,4 @@ def count(self):
30
31
32
def toString(self):
33
a = bin(self.a)[2:]
- return a[::-1] + '0' * (self.size - len(a))
34
+ return a[::-1] + '0' * (self.size - len(a))
0 commit comments