I am trying to reduce the amount of time taken to implement a fucntion
def findAns(a, b, c):
return (a&b)*(b&c)
What interpretation can I make based on the nature of bitwise AND other than the normal gate based interpretation? What does it actually do?