Skip to content

Commit c7de76d

Browse files
committed
Resovle conflicts
2 parents ed11384 + ea2ddaa commit c7de76d

File tree

159 files changed

+78
-83
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

159 files changed

+78
-83
lines changed
File renamed without changes.

boolean_algebra/Quine_McCluskey/QuineMcCluskey.py renamed to boolean_algebra/quine_mc_cluskey.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ def prime_implicant_chart(prime_implicants, binary):
9999
return chart
100100

101101
def main():
102-
no_of_variable = int(raw_input("Enter the no. of variables\n"))
103-
minterms = [int(x) for x in raw_input("Enter the decimal representation of Minterms 'Spaces Seprated'\n").split()]
102+
no_of_variable = int(input("Enter the no. of variables\n"))
103+
minterms = [int(x) for x in input("Enter the decimal representation of Minterms 'Spaces Seprated'\n").split()]
104104
binary = decimal_to_binary(no_of_variable, minterms)
105105

106106
prime_implicants = check(binary)
@@ -113,4 +113,4 @@ def main():
113113
print(essential_prime_implicants)
114114

115115
if __name__ == '__main__':
116-
main()
116+
main()

0 commit comments

Comments
 (0)