Participant 1
Initial description: I'm not sure what the flood fill standard is.
Final description: I'm not sure what the flood fill standard is.
Participant 2
Initial description: The input consists of a 3x3 grid of colored squares. Among the squares, there will be a set of 3 squares with the same color. The output is another 3x3 grid of squares with the same color as the 3 square set from the input.
Final description: The input consists of a 3x3 grid of colored squares. Among the squares, there will be a set of 3 squares with the same color. The output is another 3x3 grid of squares with the same color as the 3 square set from the input.
Participant 3
Initial description: Flood fill with the single most prevalent color.
Final description: Flood fill with the single most prevalent color.
Participant 4
Initial description: Select all squares same color of the dominate square
Final description: Select all squares same color of the dominate square
Participant 5
Initial description: which ever color has the most turn the next grid to all of that color
Final description: which ever color has the most turn the next grid to all of that color
Participant 6
Initial description: The output was filled with whatever color was most common in the input.
Final description: The output was filled with whatever color was most common in the input.
Participant 7
Initial description: excellent
Final description: excellent
Participant 8
Initial description: Fill in the output with the most common color from the input.
Final description: Fill in the output with the most common color from the input.
Participant 9
Initial description: Fill the area with the color that is most common.
Final description: Fill the area with the color that is most common.
Participant 10
Initial description: if the input has three of any color, that color should be used for all cells in the ouput
Final description: if the input has three of any color, that color should be used for all cells in the ouput
Participant 11
Initial description: Find the color used most often in the example and then fill the entire grid in the output with the same color.
Final description: Find the color used most often in the example and then fill the entire grid in the output with the same color.