Create a new project in repl.it, called Periodic Table. You should include a Class called Element. It should include the following attributes:
- Atomic Number
- Element Symbol
- Element Name
- Atomic Weight
In addition, this class should include the following:
- Default constructor
- Parameterized constructor
- Getters for each attributed
- NO SETTERS! (We have not yet found a way to turn Lead into Gold)
- Overridden toString() method
- Overridden equals() method
Finally, in the Main class, create a List of Elements for every element of the periodic table 1-100.