摘要:
class Solution { int fact(int n){ int ret = 1; for(int i = 2; i <= n; i++){ ret *= i; } return ret; } public: string getPermutation(int n, int k) { st 阅读全文
posted @ 2020-09-05 09:12
Ricochet!
阅读(133)
评论(0)
推荐(0)
浙公网安备 33010602011771号