All or Nothing
Implement a public class named All
that provides a single static method named orNothing
.
orNothing
accepts two parameters: a count (int
) and a boolean and returns an array of Item
s 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: new Item()
.