Some problem solving programming challenges, i have solved. Not all are here, but started adding them slowly.
This project is maintained by chankruze
You are packing boxes of carrots for a farm co-op, and you are supposed to evenly distribute all of the carrots that you have into the boxes.
The total number of carrots in each box doesn’t matter as long as you distribute them evenly, and there are not enough leftover to put another carrot in each box. Anything that you have left over, you get to keep. You need 7 carrots to make the cake the way that you want to.
Determine if you will have enough leftover carrots to make your cake.
Two integer values. The first represents the number of carrots that you start with, and the second is the number of boxes that need to be packed into.
A string that says ‘Cake Time’ if you have enough, or that says ‘I need to buy X more’ where X is the extra amount you need for your cake.
100
10
I need to buy 7 more
You will have zero leftover carrots after you neatly pack 100 carrots evenly into 10 boxes. You need to buy all of the carrots (7) for your cake.
Language | Solution |
---|---|
C | not available |
CPP | not available |
C# | not available |
Python | available |
Java | not available |
Ruby | not available |
Swift | not available |