Well if it is says that is missing a return statement, then it's missing a return a statement. The problem is exactly that, it is missing a 'return'. You are supposed to know how to create methods:
public [B]Lot[/B] removeLot(int number)
In the way you have created it, you must return a Lot object. So either return one or change the method.
Call the methods of the Lot object. Based on what they return determine whether it is sold or not. Use if statements. If you look at the toString method of the Lot object you will understand which method to use and what is the rule. It is also described at your requirements.