Given a table WORKERS, find how many workers have the maximum total earnings among all the workers.
The total earnings of a worker is calculated as Daily Wage * Number of Days Worked.
The description of the table workers is given below:
NOTE : The output should contain one column by the name ‘A’.
NOTE: You only need to implement the given function. Do not read input, instead use the arguments to the function. Do not print the output, instead return values as specified. Still have a question? Checkout Sample Codes for more details.