Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
My solution is 'wrong' in some cases for 1 number. I have been testing this solution and its right! Its seems that the problem lays on the rounding used on the tests.
function calculate_scrap($scraps, $robots): int {
$tot = $robots * 50; // total iron needed, not the brute.
foreach ($scraps as $perc) {
$tot = ($tot * 100) / (100 - $perc);
}
return round($tot);
}