-= Puzzle 3: Bush salesman =-

A Bush Salesman has a job for you: they want your help with their sales They have a list of bushes they want to sell, and they want you to check how many of them can be sold.

The list of bushes (your puzzle input) consists of a series of bushes, each represented by a color.

The color of a bush is defined as an RGB value. (although the range is 10 to 99 instead of 0 to 255)

The first number represents the amount of red, the second number represents the amount of green, and the third number represents the amount of blue.

Each number is separated by a comma.

To begin with, the salesman wants to sell bushes of the most common color.

For example:

Take this list of bushes:

10,20,30
20,10,30
30,20,10
10,50,10
50,10,50
10,20,30

This input has 6 bushes, some of which may share the same color.

The most common color here is 10,20,30 since that color appears twice, more than any other color.

Which color appears most frequently in the full list? (your answer is the full color separated by commas and no spaces)

You must login to get your input and play!