Implement the immutable class intSet using an array to represent a set of integers in the range 1-1000. It should support public methods like -

isMember(int x) - check whether x is a member of...