Lab 03
Array Lists
Preliminaries
Download the driver and the Lorem Ipsum text file and place them in your project directory.
Synopsis
Specification

Create a class ArrayListUtils with the following (static) methods:

Your class should not have a main method
Note

You are not allowed the use of any arrays, even if you do not directly create them. For example, the split method on strings returns an array, and therefore is not allowed.

Example Dialog:

    Enter a line number and a word number, separated by a space, or type 'quit' to quit.
    1 1
    Lorem
    Enter a line number and a word number, separated by a space, or type 'quit' to quit.
    18 3
    semper
    Enter a line number and a word number, separated by a space, or type 'quit' to quit.
    40 6
    turpis
    Enter a line number and a word number, separated by a space, or type 'quit' to quit.
    quit

    removeDuplicates Passed

    getCommonStrings Passed
    
Finally:

Upload the .java file to the dropbox

Make sure it conforms to the style guidelines