904. Fruit Into Baskets
Medium
Input: fruits = [1,2,1]
Output:
3
Explanation:
We can pick from all 3 trees.Input: fruits = [0,1,2,2]
Output:
3
Explanation:
We can pick from trees [1,2,2].
If we had started at the first tree, we would only pick from trees [0,1].Last updated