
/**
 * This is the assignment related with file reading. 
 * 
 * You will need to download the .CSV file that's linked from the GoogleSlides as the data is too large. 
 * 
 * You want NationalNames.csv but there is a state version as well if you are interested.
 * 
 * The USA keeps track of trending names by keeping a count of all names entered into this database. Your job is to do the following:
 * 
 * Load the database and list how many names are stored in here.
 * Load the names and let the user type in a name, it will then output the name, the frequency and the rank.
 * You wil need to define your own object classes to do this.
 * 
 * Extension:
 * Including features to browse for popular names. 
 * These will be:
 * List the most poular names from 1-20. Also let the user define a custom range, such as from 30-80.
 * List the top 10 boys name and the top 10 girls name. 
 * Offer the user tp type in a letter. List all names that begins with the letter and rank them in order with the appropriate information.
 * Use regular expressions to allow names that begin with a substring to be searched. It is fine to include both genders from this search. (Looking up regex will be a good start :D)
 * 
 * Challenge:
 * Include a mode for the user to add a name to the database. All they need to do is type in the name.
 * Allow them to continue adding to the list and when they are finished, UPDATE the file.
 * Note that the file has is SORTED by a certain rule. You need to maintain that rule.
 * 
 * Helpful tip: You may want to create a smaller version of the .csv file to make testing a bit easier. This applies for all portions of this task.
 */
public class BabyNames
{



    /**
     * This functions loads in the .csv file.
     */
    public void load()
    {
    }
}
