Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试减少实现功能所需的时间
def findAns(a, b, c): return (a&b)*(b&c)
除了正常的基于门的解释之外,我可以根据按位与的性质做出什么解释?它实际上是做什么的?