We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c55ba7e commit 32657b7Copy full SHA for 32657b7
1 file changed
boolean_algebra/karnaugh_map_simplification.py
@@ -42,7 +42,7 @@ def simplify_kmap(kmap: list[list[int]]) -> str:
42
if kmap[0][i] and kmap[1][i]:
43
simplified_f.append("B" if i else "B'")
44
45
- # 1 sized boxes - There are 4
+ # 1 sized boxes - There are 4 (check individual boxes)
46
if not (simplified_f):
47
for a, row in enumerate(kmap):
48
for b, item in enumerate(row):
0 commit comments