摘要: 6. Z字形变换 题目链接 按列模拟 class Solution { public String convert(String s, int numRows) { if (numRows == 1){ return s; } int rowMax = Math.min(numRows, s.len 阅读全文
posted @ 2021-01-19 23:20 一天到晚睡觉的鱼 阅读(84) 评论(0) 推荐(0)