0
$\begingroup$

We have a 2D grid with n rows and m columns, we can fill it with numbers between 1 and k (both inclusive). Only condition is that for each r such that 1<=r<=k ,no two rows must have exactly the same number of the number r. We have to find the number of ways in which we can fill the grid .

$\endgroup$

1 Answer 1

0
$\begingroup$

Well, if no two rows can have the same number, you would be able to have a maximum of $k$ columns, since once you use the numbers from $1$ to $k$ in a row, you can't go any farther.

I think besides that there are no restrictions, so for a maximum size board you would have $nk!$ ways to do it.

If you mean that you can't have any numbers repeating in a row or column, then it would be a totally different story.

$\endgroup$
1
  • $\begingroup$ You didnt get the question right, a row may have repeated numbers but no two rows must have same count of every number between 1 to k $\endgroup$
    – user103260
    Commented Jan 31, 2014 at 14:02

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .