Note: This is NOT homework.
Hi,
It's easy to iterate over two variables and print their product like so:
for a in range(1,100):
for b in range(1,100): # or range(a,100) to prevent duplicates
print( "%s = %s * %s" % (a*b,a,b) )
However, is it possible to come up with a looping structure that will iterate over a and b in descending order of their product?
For example, using this structure to loop a and b from 1-5 (inclusive) would print:
(Note that the output is sorted by the product)
25 = 5 * 5
20 = 5 * 4
16 = 4 * 4
15 = 5 * 3
12 = 4 * 3
10 = 5 * 2
9 = 3 * 3
8 = 4 * 2
6 = 3 * 2
5 = 5 * 1
4 = 4 * 1
4 = 2 * 2
3 = 1 * 3
2 = 2 * 1
1 = 1 * 1
Feel free to answer in any language you like.
Edit: Duplicates can be handled however you like. Optimally I would like the list to include duplicate products sorted by a, but that may be more difficult.
In addition, I'm looking for a solution that will not save all values and then sort because the goal of this is to save a little time on this problem.
Thanks,