2020年9月5日
摘要: 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! 阅读(121) 评论(0) 推荐(0) 编辑