File tree 2 files changed +21
-0
lines changed
2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 139
139
| 451| [ 根据字符出现频率排序] ( https://leetcode.cn/problems/sort-characters-by-frequency/ ) | [ JavaScript] ( ./algorithms/sort-characters-by-frequency.js ) | Medium|
140
140
| 453| [ 最小操作次数使数组元素相等] ( https://leetcode.cn/problems/minimum-moves-to-equal-array-elements/ ) | [ JavaScript] ( ./algorithms/minimum-moves-to-equal-array-elements.js ) | Easy|
141
141
| 454| [ 四数相加 II] ( https://leetcode.cn/problems/4sum-ii/ ) | [ JavaScript] ( ./algorithms/4sum-ii.js ) | Medium|
142
+ | 455| [ 分发饼干] ( https://leetcode.cn/problems/assign-cookies/ ) | [ JavaScript] ( ./algorithms/assign-cookies.js ) | Easy|
142
143
| 485| [ 最大连续 1 的个数] ( https://leetcode.cn/problems/max-consecutive-ones/ ) | [ JavaScript] ( ./algorithms/max-consecutive-ones.js ) | Easy|
143
144
| 491| [ 递增子序列] ( https://leetcode.cn/problems/non-decreasing-subsequences/ ) | [ JavaScript] ( ./algorithms/non-decreasing-subsequences.js ) | Medium|
144
145
| 495| [ 提莫攻击] ( https://leetcode.cn/problems/teemo-attacking/ ) | [ JavaScript] ( ./algorithms/teemo-attacking.js ) | Easy|
Original file line number Diff line number Diff line change
1
+ /**
2
+ * 455. 分发饼干
3
+ * @param {number[] } g
4
+ * @param {number[] } s
5
+ * @return {number }
6
+ */
7
+ var findContentChildren = function ( g , s ) {
8
+ g . sort ( ( a , b ) => a - b ) ;
9
+ s . sort ( ( a , b ) => a - b ) ;
10
+
11
+ let j = 0 ,
12
+ i = 0 ;
13
+ while ( j < s . length && i < g . length ) {
14
+ if ( s [ j ] >= g [ i ] ) {
15
+ i ++ ;
16
+ }
17
+ j ++ ;
18
+ }
19
+ return i ;
20
+ } ;
You can’t perform that action at this time.
0 commit comments