Skip to content

Commit ac21185

Browse files
yanglbmeidoocs
authored andcommitted
style: format code and docs with prettier
1 parent 953baef commit ac21185

File tree

1 file changed

+1
-1
lines changed
  • lcof2/剑指 Offer II 060. 出现频率最高的 k 个数字

1 file changed

+1
-1
lines changed

lcof2/剑指 Offer II 060. 出现频率最高的 k 个数字/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ class Solution {
209209
for num in nums {
210210
frequency[num, default: 0] += 1
211211
}
212-
212+
213213
var freqHeap = Heap<FreqElement>()
214214
for (key, value) in frequency {
215215
freqHeap.insert(.init(val: key, freq: value))

0 commit comments

Comments
 (0)