摘要: 1 class Solution { 2 public int numIdenticalPairs(int[] nums) { 3 HashMap<Integer,Integer> index = new HashMap<Integer,Integer>(); 4 int total = 0; 5 阅读全文
posted @ 2020-07-12 22:00 小小码农-安 阅读(194) 评论(0) 推荐(0)