2021年3月29日
摘要: package leetcode; public class demo_38 { public String countAndSay(int n) { String s="1"; int j=1; for(int m=1;m<n;m++) { String s1=""; for(int i=0;i< 阅读全文
posted @ 2021-03-29 11:02 一仟零一夜丶 阅读(50) 评论(0) 推荐(0)