摘要: class Solution { public boolean judgeCircle(String moves) { int lr = 0; int ud = 0; for (char c: moves.toCharArray()) { if ('U' == c) { ud += 1... 阅读全文
posted @ 2019-05-21 20:47 stoneBlog 阅读(182) 评论(0) 推荐(0) 编辑