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.


Attempt 1: Correct

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.


Attempt 1: Correct

Participant 3

Initial description: Flood fill with the single most prevalent color.

Final description: Flood fill with the single most prevalent color.


Attempt 1: Correct

Participant 4

Initial description: Select all squares same color of the dominate square

Final description: Select all squares same color of the dominate square


Attempt 1: Correct

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


Attempt 1: Correct

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.


Attempt 1: Correct

Participant 7

Initial description: excellent

Final description: excellent


Attempt 1: Correct

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.


Attempt 1: Correct

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.


Attempt 1: Correct

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


Attempt 1: Correct

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.


Attempt 1: Correct