摘要: 题目 String类型 解答 class Solution { public boolean checkTwoChessboards(String s, String t) { int a = (s.charAt(0) + s.charAt(1)) % 2; int b = (t.charAt(0) 阅读全文
posted @ 2024-12-03 11:55 TTDB 阅读(25) 评论(0) 推荐(0)