|
|
|
|
|
by mh-cx
3691 days ago
|
|
I think you misunderstood his question. I have the same problem. How do you get from this line: (A1Y and B2Y and B3Y) or (A1Y and A2Y and B3Y)
to this (A1Y and B2Y) or (A2Y and B3Y)
BrandonSmithJ just did some replacement to make it easier to read. Maybe he shouldn't have used the same letters to avoid confusion.Let's write it differently: Why are these terms equivalent? (u && v && w) || (u && x && w)
(u && v) || (x && w)
|
|