Hmm, I don't get what you wrote, what do you mean by:
(1,1) -> (2,1)
(1,1) -> (2,2)
(1,2) -> (2,2)
and:
(1,1) -> (2,1)
(1,1) -> (3,1)
(1,1) -> (2,2)
(1,1) -> (2,3)
(1,1) -> (3,2)
(1,1) -> (3,3)
(1,2) -> (2,2)
(1,2) -> (3,2)
(2,1) -> (3,1)
(2,1) -> (3,2)
(2,1) -> (3,3)?
--------------
Growing functions are the ones such that for every x < y, we have: f(x) <= f(y).
For n = 2, we have 3 such functions:
f1 : f1(1) = 1, f1(2) = 1
(that's what AKG meant when he wrote: f1: 1 -> 1; 2 -> 1).
f2 : f2(1) = 1, f2(2) = 2
f3 : f3(1) = 2, f3(2) = 2
Let's first look at f1, we have 1 < 2, so f1(1) = 1 <= f1(2) = 1, right? And that's a growing function.
Look at AKG's hints again and see if you can finish the problem.
Is it clearer? :)