合集-瑰丽算法
摘要:1 import java.util.*; 2 3 // 注意类名必须为 Main, 不要有任何 package xxx 信息 4 public class Main { 5 public static void main(String[] args) { 6 Scanner in = new Sc
阅读全文
摘要:import java.util.*; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[] args) { Scanner in = new Scanner(System
阅读全文
摘要:目标就是为了分享 AI处理器 https://blog.csdn.net/qq_53208184/article/details/129734647Excel单元格数值统计 https://wiki.amoscloud.com/zh/ProgramingPractice/NowCoder/Adecc
阅读全文
摘要:import java.util.*; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[] args) { Scanner in = new Scanner(System
阅读全文
摘要:逆波兰表达式 https://zhuanlan.zhihu.com/p/357982040 两个数交换 let a = 11, b = 2;a ^= b;b ^= a;a ^= b;console.log(a, b); 动态规划 https://www.cnblogs.com/yyyyfly1/p/
阅读全文