2020年9月17日
摘要: package leetcode; import java.util.Arrays; public class HindexSolution { public int hIndex(int[] citations) { Arrays.sort(citations); for(int i =0 ; i 阅读全文
posted @ 2020-09-17 00:48 凌晨三点半的飞机 阅读(152) 评论(0) 推荐(0) 编辑
摘要: package my; import java.util.HashMap; import java.util.Map; public class SingleNumberSolution { public int[] singleNumber(int[] nums) { int[] result = 阅读全文
posted @ 2020-09-17 00:06 凌晨三点半的飞机 阅读(163) 评论(0) 推荐(0) 编辑