Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions boolean_algebra/quine_mc_cluskey.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@

>>> selection([[1]],['0.00.01.5'])
['0.00.01.5']

>>> compare_string('0010','0110')
'0_10'

>>> is_for_table('__1','011',2)
True
"""
def compare_string(string1, string2):
l1 = list(string1); l2 = list(string2)
Expand Down