Skip to content

Commit b3c4f2d

Browse files
committed
✨ [2090] K Radius Subarray Averages
1 parent 2b57a4d commit b3c4f2d

File tree

3 files changed

+65
-1
lines changed

3 files changed

+65
-1
lines changed

2090/my_solution.js

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/**
2+
* @param {number[]} nums
3+
* @param {number} k
4+
* @return {number[]}
5+
*/
6+
const getAverages = (nums, k) => {
7+
if (k === 0) return nums;
8+
let result = [];
9+
10+
for (let i = 0; i < nums.length; i++) {
11+
if (i < k || i + k >= nums.length) {
12+
result.push(-1);
13+
continue;
14+
}
15+
16+
let tmpSum = 0;
17+
console.log(`> ${i} `)
18+
for (let j = i - k; j < i + k + 1; j++) {
19+
console.log(`from ${j} to ${i + k}`)
20+
tmpSum += nums[j];
21+
}
22+
23+
result.push(Math.floor(tmpSum / ((k * 2) + 1)));
24+
}
25+
26+
return result;
27+
};
28+
29+
let x = null;
30+
// 9
31+
// _ _
32+
// 0 1 2 3 4 5 6 7 8
33+
x = getAverages([7, 4, 3, 9, 1, 8, 5, 2, 6], 3) // [-1,-1,-1,5,4,4,-1,-1,-1]
34+
// x = getAverages([100000], 0) // [100000]
35+
// x = getAverages([8], 100000)
36+
console.log("Result")
37+
console.log(x)

2090/solution.js

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/**
2+
* @param {number[]} nums
3+
* @param {number} k
4+
* @return {number[]}
5+
*/
6+
const getAverages = (nums, k) => {
7+
if (k === 0) return nums;
8+
let result = [];
9+
10+
for (let i = 0; i < nums.length; i++) {
11+
if (i < k || i + k >= nums.length) {
12+
result.push(-1);
13+
continue;
14+
}
15+
16+
let tmpSum = 0;
17+
console.log(`> ${i} `)
18+
for (let j = i - k; j < i + k + 1; j++) {
19+
tmpSum += nums[j];
20+
}
21+
22+
result.push(Math.floor(tmpSum / ((k * 2) + 1)));
23+
}
24+
25+
return result;
26+
};

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@
7575
- [1791. Find Center of Star Graph](./1791/)
7676
- [1909. Remove One Element to Make the Array Strictly Increasing](./1909/)
7777
- [1971. Find if Path Exists in Graph](./1971/)
78+
- [2090. K Radius Subarray Averages](./2090/)
7879

7980
---
8081

@@ -118,7 +119,7 @@ Batch create:
118119
NOTE: JS IS HERE
119120
-->
120121
```ssh
121-
chapter=54 && mkdir ./$chapter && touch ./$chapter/my_solution.js && touch ./$chapter/solution.js && alias x="node ./$chapter/my_solution.js"
122+
chapter=2090 && mkdir ./$chapter && touch ./$chapter/my_solution.js && touch ./$chapter/solution.js && alias x="node ./$chapter/my_solution.js"
122123
```
123124
> then you can use `x` for quick debug.
124125

0 commit comments

Comments
 (0)