id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

pais@kinetigram.com > L511_makeBricks
prev  |  next  |  chance

APCS Logic 5, Problem 11 (hard). 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 and can be done without any loops.


L511_makeBricks(3, 1, 8) → true
L511_makeBricks(3, 1, 9) → false
L511_makeBricks(3, 2, 10) → true

...Save, Compile, Run (ctrl-enter)

public boolean L511_makeBricks(int small, int big, int goal) { }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Difficulty: 250

Copyright Nick Parlante 2017 - privacy