1. Permutations P:
execute row exchanges
becomes PA LU for any invertible A
Permutations P identity matrix with reordered rows
mn (n-1) ... (3) (2) (1) counts recordings, counts all nxn permuations
对于nxn矩阵存在着n!个置换矩阵
,
2. Transpose: 2.…
一,单调递增的数字
1.题目 当且仅当每个相邻位数上的数字 x 和 y 满足 x < y 时,我们称这个整数是单调递增的。 给定一个整数 n ,返回 小于或等于 n 的最大数字,且数字呈 单调递增 。 示例 1: 输入: n 10
输出: 9示例 2: 输入…