摘要: "题目" c++ class Solution { public: string a[31]; string countAndSay(int n) { a[1]="1"; for(int i=2;i 阅读全文
posted @ 2019-08-03 13:20 Shendu.CC 阅读(111) 评论(0) 推荐(0)
摘要: "题目" c++ DFS ,代码写的又臭又长,Faster than 85.33% class Solution { public: set a[10][10]; set e; int b[10][10]; int c[10][10]; int judge(int i,int j,int x) { 阅读全文
posted @ 2019-08-03 11:56 Shendu.CC 阅读(123) 评论(1) 推荐(0)