AI 加码,字节跳动青训营,等待您的加入~
1、报名方式
- 点击以下链接:字节跳动青训营报名入口
- 扫描图片二维码:
2、考核内容
在指定的题库中自主选择不少于 15 道算法题并完成解题,其中题目难度分配如下:
- 简单题不少于 10 道
- 中等题不少于 4 道
- 困难题不少于 1 道
解答代码
67. 完美整数(简单)
代码实现:
public class Main {
public static int solution(int x, int y) {
int count = 0; // 定义一个计数器
for (int num = x; num <= y; num++) {
String strNum = String.valueOf(num);
boolean isPerfect = true;
char firstChar = strNum.charAt(0);
for (int i = 1; i < strNum.length(); i++) {
if (strNum.charAt(i) != firstChar) {
isPerfect = false;
break;
}
}
if (isPerfect) {
count++; // 如果是完美整数,计数器加 1
}
}
return count; // 返回计数器的值
}
public static void main(String[] args) {
// Add your test cases here
System.out.println(solution(1, 10) == 9);
System.out.println(solution(2, 22) == 10);
}
}
运行结果: