-
-
Notifications
You must be signed in to change notification settings - Fork 50.7k
Expand file tree
/
Copy pathand_gate.py
More file actions
91 lines (75 loc) · 2.47 KB
/
and_gate.py
File metadata and controls
91 lines (75 loc) · 2.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
"""
An AND Gate is a logic gate in boolean algebra which results to 1 (True) if all the
inputs are 1 (True), and 0 (False) otherwise.
Following is the truth table of a Two Input AND Gate:
------------------------------
| Input 1 | Input 2 | Output |
------------------------------
| 0 | 0 | 0 |
| 0 | 1 | 0 |
| 1 | 0 | 0 |
| 1 | 1 | 1 |
------------------------------
Refer - https://www.geeksforgeeks.org/logic-gates/
"""
def and_gate(input_1: int, input_2: int) -> int:
"""
Calculate AND of two binary input values.
>>> and_gate(0, 0)
0
>>> and_gate(0, 1)
0
>>> and_gate(1, 1)
1
>>> and_gate(2, 1)
Traceback (most recent call last):
...
ValueError: Both inputs must be 0 or 1
>>> and_gate(0, "1")
Traceback (most recent call last):
...
TypeError: Both inputs must be integers
"""
# Type validation
if not isinstance(input_1, int) or not isinstance(input_2, int):
raise TypeError("Both inputs must be integers")
# Value validation
if input_1 not in (0, 1) or input_2 not in (0, 1):
raise ValueError("Both inputs must be 0 or 1")
return input_1 & input_2
def n_input_and_gate(inputs: list[int]) -> int:
"""
Calculate AND of a list of binary input values.
>>> n_input_and_gate([1, 1, 1, 1, 1])
1
>>> n_input_and_gate([1, 0, 1, 1, 0])
0
>>> n_input_and_gate([])
Traceback (most recent call last):
...
ValueError: Input list cannot be empty
>>> n_input_and_gate([1, 2, 1])
Traceback (most recent call last):
...
ValueError: All inputs in the list must be 0 or 1
>>> n_input_and_gate([1, "1"])
Traceback (most recent call last):
...
TypeError: All inputs in the list must be integers
"""
# Type validation for the list itself
if not isinstance(inputs, list):
raise TypeError("Input must be a list")
# Edge case validation for an empty list
if not inputs:
raise ValueError("Input list cannot be empty")
# Type and value validation for items within the list
for item in inputs:
if not isinstance(item, int):
raise TypeError("All inputs in the list must be integers")
if item not in (0, 1):
raise ValueError("All inputs in the list must be 0 or 1")
return int(all(inputs))
if __name__ == "__main__":
import doctest
doctest.testmod()