.
Suppose a designer has a palette of 10 colors to work with, and wants to design
a flag with 4 vertical stripes, all of different colors.
How many possible flags can be created?
~~~~~~~~~~~~~~~~~~~
10*9*8*7 = 5040, if the order is important, or
= = 210, if the order is not important.
Solved.