【leetcode_easy_array】1394. Find Lucky Integer in an Array

problem

1394. Find Lucky Integer in an Array

solution #1: 使用哈希表;

使用哈希表记录数组元素和freq,然后判断是否相等,且取最大值;

 

注意

1. 最大值可以由下标一次递减隐性表示;

2. 数值的范围是1-500;

参考

1. leetcode_1394. Find Lucky Integer in an Array;

2. cplusplus_unordered_map;

posted on 2020-07-15 21:57  鹅要长大  阅读(90)  评论(0编辑  收藏  举报

导航