Skip to content

Commit 32657b7

Browse files
committed
changed comments
1 parent c55ba7e commit 32657b7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

boolean_algebra/karnaugh_map_simplification.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def simplify_kmap(kmap: list[list[int]]) -> str:
4242
if kmap[0][i] and kmap[1][i]:
4343
simplified_f.append("B" if i else "B'")
4444

45-
# 1 sized boxes - There are 4
45+
# 1 sized boxes - There are 4 (check individual boxes)
4646
if not (simplified_f):
4747
for a, row in enumerate(kmap):
4848
for b, item in enumerate(row):

0 commit comments

Comments
 (0)