| 
 | 
back to boardPlease someone tell me what test 9 is!! I have about 50 wrong submissions,please help me with test #9.       Edited by author 11.12.2010 17:01 Re: Please someone tell me what test 9 is!! With following block : if (shop.get(current.need) == null) {   q.removeFirst(); // husband goes home with nothing } i had WA9 when I changed it to if (shop.get(current.need) == null || shop.get(current.need) == 0) {   q.removeFirst(); // husband goes home with nothing } i got AC. May be this helps you.  |  
  | 
|