I need a code that return True if only one or two of three params are true
what is the shortest/best way?
|
I need a code that return True if only one or two of three params are true what is the shortest/best way? |
|||||||||||||
|
|
I'm addicted to this question!
|
|||||||||||||||||
|
|
Just check whether at least one of the values is set and not all three values are set:
|
|||||||||||||||
|
|
Here's a fancy way:
If the first bool is set, either of the remaining should be unset. Otherwise, either of the of the remaining should be set. EDIT- In response to comments: in production code, I would probably go with @AS-CII or @Stuart; it communicates the intent of what is being computed most clearly. |
|||||||||||||||||
|
|
Another answer... I like this question...
|
|||||
|
|
LINQ way:
|
|||||||||||
|
|
Final answer from me... honest! One question that's occurred to me is whether this is really a situation where 3 bools should be used. Instead of using 3 bools, it might be more appropriate to use a [Flags] enum - and it might make the code faster, more readable and more usable. The code for this might be:
Out of interest, what are the 3 bools in the original question? |
||||
|
|
|
Just for fun, if true = 1 and false = 0:
And another one, assuming false = 0 and true = any strictly positive integer:
Why stick to a couple comparisons / boolean operations when you could do 6 multiplications AND make it completely obscure? ;-) |
||||
|
|
|
This is such a fun question - I had to try it in a Clojure (a language that I am learning)
|
|||
|
|
|
Since my previous answer was too long, I'll try again:
|
|||||||||||
|
Edit: after badgering by commenters |
|||||||||||
|
|
Put the booleans in a list and then filter using linq:
|
|||
|
|
|
|||||
|