Can someone please explain to me why this is wrong?
[CODE]public boolean makeBricks(int small, int big, int goal) {
int inch = big*5;
if(goal >= inch) return(goal-inch <= small);
else return(small >= goal || (goal-small)%5 == 0);
}[/CODE]
the problem can be found at [url]http://codingbat.com/prob/p183562[/url]