首页 > TAG信息列表 > Solution7

只出现一次的数字

介绍:给出一个数组,找到这个数组中只出现了一次的"数字" *这个效率有点差,因为运用了好多循环(不推荐) 执行用时:1367 ms 内存消耗:42.5 MB public class SingleNumber { public static void main(String[] args) { int[] nums = {4,1,2,1,2}; Solution7 solution