Kotlinlearncs.online LogoJava
Return to List

Solve: All or Nothing

Created By: Geoffrey Challen
/ Version: 2020.10.0

Implement a method named orNothing. orNothing accepts two parameters: a count (Int) and a boolean and returns an array of Items of size count. If the passed boolean is true you should return an array where all references refer to the same Item. If the passed boolean is false you should return an array where all references refer to different Item instances. You can create Item instances with an empty constructor: Item().

Related Lessons

Stuck? You may find these lessons helpful: