I need a code that return True if only one or two of three params are true

what is the shortest/best way?

link|improve this question

59% accept rate
var foo = a || b || c ???? – Markust Mar 17 '11 at 18:51
1  
@Markust: That is true if any one is true, including when they are all true. – unholysampler Mar 17 '11 at 18:52
And what if all three are true? – Nate Mar 17 '11 at 18:53
@unholysampler: all trues is not covered in his example. for one, two or three I implied any. The spec is a little vague. – Markust Mar 17 '11 at 18:57
@Markust: "if only" is the same as "if and only if" in my book. But yes, the question could have been clearer. – unholysampler Mar 17 '11 at 19:01
show 3 more comments
feedback

14 Answers

up vote 19 down vote accepted

I'm addicted to this question!

bool MyFourthAnswer(bool a, bool b, bool c)
{
   return (a != b) || (b != c);
}
link|improve this answer
2  
+1: You outdid yourself. Not very important, but I'd wager this is the fastest of the answers so far too. – Ani Mar 17 '11 at 19:48
Thanks - I'm going "cold turkey" now - got to get away from this question :) – Stuart Mar 17 '11 at 19:51
7  
Similar but shorter: return c^a|a^b; The question DID ask for "shortest". – Ben Voigt Mar 17 '11 at 23:35
How such a simple question can lead to so much answers, results and stuff. I'll run a benchmark against this one too (when I'm at a pc). I doubt if it's faster then the xor variant of Ben Voigt. – Aidiakapi Mar 18 '11 at 11:49
1  
@Stuart: I did a small benchmark (only 10 seconds each), but I suppose it's precise enough, your code with || replaced by |: 10183ms, a ^ b | b ^ c: 10050ms, a ? (!b | !c) : (b | c): 10980ms. You won the race with production code :). – Aidiakapi Mar 18 '11 at 13:05
show 2 more comments
feedback

Just check whether at least one of the values is set and not all three values are set:

bool result = (a | b | c) & !(a & b & c);
link|improve this answer
Idea stealer xD – Aidiakapi Mar 17 '11 at 18:55
@Aidiakapi I did no such thing. ;-) In fact, I originally misunderstood the question and my first answer would give a completely wrong result. – Konrad Rudolph Mar 17 '11 at 18:56
@Konrad Rudolph I got downvoted while my answer is ok... – Aidiakapi Mar 17 '11 at 18:58
1  
@Aidiakapi: Considering performance is propably (assuming this isn't a core piece of some inner loop in a time-critical component) missing the point. The LINQ snippet clearly reflects the "1 or 2 are true" idea, by counting the true ones and comparing their count. – delnan Mar 17 '11 at 19:25
1  
@delnan So you're saying that storing a count, and then checking whenever that count is 1 or 2, is easier to read, then just seeing: if a, b, or c is true, and not a, b and c are true? That kinda makes it. – Aidiakapi Mar 17 '11 at 19:28
show 8 more comments
feedback

Here's a fancy way:

bool oneOrTwoTrue = a ? (!b || !c) : (b || c);

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.

link|improve this answer
3  
Love for ternary operator. +1 – AS-CII Mar 17 '11 at 18:58
2  
+1 for creativity – Aidiakapi Mar 17 '11 at 19:04
This doesn't seem like an ideal place to use the ternary operator (re: readability) – Joe Philllips Mar 17 '11 at 19:06
It isn't but it works, and it's creative. – Aidiakapi Mar 17 '11 at 19:09
2  
It turns out to be extremely fast, this code is faster then any of the other solutions, it's 1/6th faster then the top voted answer ;). – Aidiakapi Mar 17 '11 at 19:22
show 2 more comments
feedback

This should do it

return !((a & b & c) || (!a & !b & !c))
link|improve this answer
feedback

Another answer... I like this question...

bool MyThirdAnswer(params bool[] list)
{
   return list.Distinct().Count() == 2;
}
link|improve this answer
1  
+1: This is the most creative answer! In fact, it's a nicer rephrasing of the question: "Check if the bools contain both a true and a false". – Ani Mar 17 '11 at 19:21
feedback

LINQ way:

bool[] params = { true, false, true };
int count = params.Count(a => a);
bool result = count == 2 || count == 1;
link|improve this answer
Didn't work for "all false" originally - but does now you've fixed it! – Stuart Mar 17 '11 at 18:54
This is not the situation to use linq, it's much less fast. – Aidiakapi Mar 17 '11 at 18:55
This will return true if none of the inputs are true. I like the idea though. – Jonathan Stanton Mar 17 '11 at 18:56
+1. One point; why not do count == 1 || count == 2? Easier to read IMO. – Ani Mar 17 '11 at 19:17
And I've just tested it, and linq is 15 times as slow! – Aidiakapi Mar 17 '11 at 19:19
feedback

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:

[flags]
enum Alarm
{
   None = 0x0,
   Kitchen = 0x1,
   Bathroom = 0x2,
   Bedroom = 0x4,
   All = Kitchen | Bathroom | Bedroom,
}

bool MyFifthAnswer(Alarm alarmState)
{
   switch (alarmState)
   {
       case Alarm.None:
       case Alarm.All:
          return false;
       default:
          return true;
   }
}

Out of interest, what are the 3 bools in the original question?

link|improve this answer
feedback

Just for fun, if true = 1 and false = 0:

return (a + b + c) % 3

And another one, assuming false = 0 and true = any strictly positive integer:

return (a*b + b*c + c*a) > (3*a*b*c)

Why stick to a couple comparisons / boolean operations when you could do 6 multiplications AND make it completely obscure? ;-)

link|improve this answer
feedback

This is such a fun question - I had to try it in a Clojure (a language that I am learning)

(defn one-or-two-args-true? [& args]
      (> 3 (count (filter true? args)) 0))


user=> (one-or-two-args-true? false false false)
false
user=> (one-or-two-args-true? false false true)
true
user=> (one-or-two-args-true? false true true)
true
user=> (one-or-two-args-true? true true true)
false
link|improve this answer
feedback

Since my previous answer was too long, I'll try again:

bool MySecondAnswer(params bool[] list)
{
   return list.GroupBy(x => x).Count() == 2;
}
link|improve this answer
Seriously, to all people trying to use linq for something so simple, firstly, it's 15 times slower, secondly it's a lot less readable, and thirdly, why would you? And for this one, the answer doesn't work... it must be count == 1 || count == 2. – Aidiakapi Mar 17 '11 at 19:24
I think the answer is what's "shortest/best"? If the question is for "fastest execution", then I agree that Linq is too slow - but if your idea of "Best" was, say, "most flexible for extension to additional parameters" then Linq is a really good answer (IMO) – Stuart Mar 17 '11 at 19:26
Also... for this answer... your comment is wrong - this is a GroupBy solution - so Count() == 1 would mean there was only one group. – Stuart Mar 17 '11 at 19:27
Sorry, I thought you had the same as the other dude, but still, it's not what he asked, he asked specifically for 1 or 2 are right. – Aidiakapi Mar 17 '11 at 19:32
No worries - just enjoying the question - and I believe this yield the same answer as your "not all true and not all false" answer, albeit not as quickly! – Stuart Mar 17 '11 at 19:38
show 1 more comment
feedback
bool MyAnswer(params bool[] list)
{
   var countTrue = list.Where(x => x).Count();
   return countTrue == 1 || countTrue == 2;
}

Edit: after badgering by commenters true == x removed... sorry - this was in a "coding standards" document I had to follow once!

link|improve this answer
1  
As much as I love fiddling with boolean algebra, I really like this one. (Missis one equals sign though, and the == true parts could be dropped). – delnan Mar 17 '11 at 18:53
This deserves a thousand downvotes for x == true. – Konrad Rudolph Mar 17 '11 at 18:54
Agreed - it should have been true == x :) – Stuart Mar 17 '11 at 18:56
This will work however it is not the shortest way of doing it. – Jonathan Stanton Mar 17 '11 at 18:57
feedback

Put the booleans in a list and then filter using linq:

var options = new List<bool>() { true, true, false };
var trueOptions = options.Where( opt => opt };
var count = trueOptions.Count();

return count == 1 || count == 2;
link|improve this answer
feedback
bool result = !(a && b && c) && (a || b || c)
link|improve this answer
2  
Honestly copy pasting the best voted answer, reversing the order, and making it doubles instead of singles doesn't make the trick for me. – Aidiakapi Mar 17 '11 at 19:37
feedback

Good question
My Answer:

return (a||b||c) != (a&&b&&c)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.