摘要: leetcode每日一题 357.统计各位数字都不同 方法1:暴力破解,遍历每一种可能 class Solution {​ public int countNumbersWithUniqueDigits(int n) { boolean[] buf = new boolean[10]; return 阅读全文
posted @ 2022-04-11 09:55 java架构师1 阅读(29) 评论(0) 推荐(0)