Skip to content
This repository has been archived by the owner on Oct 17, 2023. It is now read-only.

leetcode problem 1103. Distribute Candies to People. #326

Open
vermaaarti opened this issue Oct 8, 2023 · 0 comments
Open

leetcode problem 1103. Distribute Candies to People. #326

vermaaarti opened this issue Oct 8, 2023 · 0 comments

Comments

@vermaaarti
Copy link

Hey @Saikat2407, I would like to contribute to this problem, Please do assign it to me.
Where:
We distribute some number of candies, to a row of n = num_people people in the following way:

We then give 1 candy to the first person, 2 candies to the second person, and so on until we give n candies to the last person.

Then, we go back to the start of the row, giving n + 1 candies to the first person, n + 2 candies to the second person, and so on until we give 2 * n candies to the last person.

This process repeats (with us giving one more candy each time, and moving to the start of the row after we reach the end) until we run out of candies. The last person will receive all of our remaining candies (not necessarily one more than the previous gift).

Return an array (of length num_people and sum candies) that represents the final distribution of candies.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant