You are given N blocks of height 1…N. In how many ways can you arrange
these blocks in a row such that when viewed from left you see only L
blocks (rest are hidden by taller blocks) and when seen from right you
see only R blocks?

Examples:
 1)For N=3, L=2, R=1 there is only one arrangement {2, 1, 3}.
 2)For N=3, L=2, R=2 there are two ways {1, 3, 2} and {2, 3, 1}

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To post to this group, send email to algoge...@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to