Big Java & Java Concepts example project "twodim"

You can use this project as follows:

 - invoke the main method of the driver class TicTacToeTester by right-clicking 
 on the class representation and selecting the main method.
 - interactively create a Bank object
 - create a number of BankAccounts and add to the Bank
 - use the Bank's find method to locate an account  
 
  
This project illustrates concepts covered in Big Java & Java Concepts, Chapter 8 
"Arrays and ArrayLists".
  
 - to become familiar with using arrays and array lists
 - to study common array algorithms
 - to learn how to use two-dimensional arrays
 - to understand when to choose array lists and arrays in your programs