Title: Fruits in a basket standard problem #30
Labels
Assigned📋
This issue has been assigned to you!
Closed:🚫
This issue or PR is closed due to invalidity or prolonged inactivity and lack of updates.
good first issue
Good for newcomers
hacktoberfest2024
Your contribution is part of Hacktoberfest 2024! 🎉
No_Update
It's been so long you are not responding to this issue so we are going to close the issue soon.
You are visiting a farm that has a single row of fruit trees arranged from left to right. The trees are represented by an integer array fruits where fruits[i] is the type of fruit the ith tree produces.
You want to collect as much fruit as possible. However, the owner has some strict rules that you must follow:
You only have two baskets, and each basket can only hold a single type of fruit. There is no limit on the amount of fruit each basket can hold.
Starting from any tree of your choice, you must pick exactly one fruit from every tree (including the start tree) while moving to the right. The picked fruits must fit in one of your baskets.
Once you reach a tree with fruit that cannot fit in your baskets, you must stop.
Given the integer array fruits, return the maximum number of fruits you can pick.
complete this function:
public int totalFruit(int[] fruits) {
#Hacktoberfest2024 #SkillShow
The text was updated successfully, but these errors were encountered: