Kotlinlearncs.online LogoJava
Return to List

Solve: Make Bricks

Imported By: Geoffrey Challen
/ Version: 2021.7.0

We want to make a row of bricks that is goal inches long. We have a number of small bricks (1 inch each) and big bricks (5 inches each). Return true if it is possible to make the goal by choosing from the given bricks. This is a little harder than it looks! Complete the problem without using any loops.

boolean makeBricks(int small, int big, int goal) {
return false; // You may need to remove this starter code
}

Related Lessons

Stuck? You may find these lessons helpful: