Question: (Program in scala and please use a main method at the end) Need it asap please! In a package named execution create a Scala class
(Program in scala and please use a main method at the end) Need it asap please!
In a package named "execution" create a Scala class named "VoteCounter" with the following:
A constructor that takes a List of Strings representing the possible options for voting
A method named addVotes that takes a String and an Int as parameters and returns Unit. This method adds this many votes to the option specified by the string
If the option is not in the list given in the constructor, the votes should be ignored
Example: voteCounter.addVotes("Boaty McBoatface", 1000) will add 1000 votes to this option if it was listed in the constructor call
A method named getVotes that takes an option as a String and returns the total number of votes for this option as an Int
If the input is not a valid option, return 0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
