longestPerm n
Given an integer $n$, returns the permutation $\{n,n-1,...2,1\}$.
i1 : longestPerm 7 o1 = {7, 6, 5, 4, 3, 2, 1} o1 : List
The object longestPerm is a method function.