-
Notifications
You must be signed in to change notification settings - Fork 161
/
rabbits-in-forest.md
28 lines (22 loc) · 1.21 KB
/
rabbits-in-forest.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<p>In a forest, each rabbit has some color. Some subset of rabbits (possibly all of them) tell you how many other rabbits have the same color as them. Those <code>answers</code> are placed in an array.</p>
<p>Return the minimum number of rabbits that could be in the forest.</p>
<pre>
<strong>Examples:</strong>
<strong>Input:</strong> answers = [1, 1, 2]
<strong>Output:</strong> 5
<strong>Explanation:</strong>
The two rabbits that answered "1" could both be the same color, say red.
The rabbit than answered "2" can't be red or the answers would be inconsistent.
Say the rabbit that answered "2" was blue.
Then there should be 2 other blue rabbits in the forest that didn't answer into the array.
The smallest possible number of rabbits in the forest is therefore 5: 3 that answered plus 2 that didn't.
<strong>Input:</strong> answers = [10, 10, 10]
<strong>Output:</strong> 11
<strong>Input:</strong> answers = []
<strong>Output:</strong> 0
</pre>
<p><strong>Note:</strong></p>
<ol>
<li><code>answers</code> will have length at most <code>1000</code>.</li>
<li>Each <code>answers[i]</code> will be an integer in the range <code>[0, 999]</code>.</li>
</ol>