面试经典150-
Problem: 274. H 指数
思路 使用数组统计频次 解题过程 复杂度 时间复杂度: O(n) 空间复杂度: O(n)
class Solution {
public int hIndex(int[] citations) {
int n = citations.le
面试经典150-
思路 使用数组统计频次 解题过程 复杂度 时间复杂度: O(n) 空间复杂度: O(n)
class Solution {
public int hIndex(int[] citations) {
int n = citations.le
回复