Fill Table Row(it’s an IQ test question)

Here is a table include the 2 rows. And the cells in the first row have been filled with 0~4. Now you need to fill the cells

in the second row with integer. It must to follow the rule.

Rule:

If the first cell in the second row is filled with A, then A mean that the number “0” appears A times in the second row.

Same things is at the other cells, if the second cell is filled with B, then “1” will appear B times in the second row.

0          1          2          3          4

A          B          C          D         E

A+B+C+D+E=5

2+1+2+0+0=5

SO the two rows are as below:

0   1   2   3   4

2   1   2   0   0

原文地址:https://www.cnblogs.com/I-am-Betty/p/3252362.html