Skip to content

Commit 487b750

Browse files
authored
What is between - in JS, TS
1 parent 26cdf81 commit 487b750

File tree

4 files changed

+50
-1
lines changed

4 files changed

+50
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
// 1 Plain solution
2+
function between(a, b) {
3+
const res = [];
4+
5+
for (let i = a; i <= b; i++) {
6+
res.push(i);
7+
}
8+
9+
return res;
10+
}
11+
12+
// 2 Optimized solution
13+
function between(a, b) {
14+
const res = Array(b - a + 1).fill(0);
15+
return res.map((_, i) => a + i);
16+
}
17+
18+
// 3 Clever solution
19+
const between = (a, b) =>
20+
Array.from(
21+
new Array(b - a + 1),
22+
(_, i) => a + i
23+
);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# What is between (8 kyu)
2+
3+
Complete the function that takes two integers (a, b, where a < b) and return an array of all integers between the input parameters, including them.
4+
5+
For example:
6+
7+
```
8+
a = 1
9+
b = 4
10+
--> [1, 2, 3, 4]
11+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
export function between(a: number, b: number): number[] {
2+
const res = Array(b - a + 1).fill(0);
3+
return res.map((_, i) => a + i);
4+
}

README.md

+12-1
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@ JS Video Tutorial) :
660660
/ [[Java](<7kyu/(7%20kyu)%20Two%20to%20One/(7%20kyu)%20Two%20to%20One.java>)]
661661
/ [[Go](<7kyu/(7%20kyu)%20Two%20to%20One/(7%20kyu)%20Two%20to%20One.go>)]
662662

663-
## 8 kyu Katas (49 -> 55)
663+
## 8 kyu Katas (50 -> 55)
664664

665665
**[(8 kyu) Abbreviate a Two Word Name](https://www.codewars.com/kata/abbreviate-a-two-word-name)**
666666
([Description](<8kyu/(8%20kyu)%20Abbreviate%20a%20Two%20Word%20Name/(8%20kyu)%20Abbreviate%20a%20Two%20Word%20Name.md>) +
@@ -1214,6 +1214,17 @@ JS Video Tutorial) :
12141214
/ [Java]
12151215
/ [Go]
12161216
<br>
1217+
**[(8 kyu) What is between](https://www.codewars.com/kata/55ecd718f46fba02e5000029/)** ([Description](<8kyu/(8%20kyu)%20What%20is%20between/(8%20kyu)%20What%20is%20between.md>) +
1218+
JS Video Tutorial) :
1219+
[[JavaScript](<8kyu/(8%20kyu)%20What%20is%20between/(8%20kyu)%20What%20is%20between.js>)]
1220+
/ [[TypeScript](<8kyu/(8%20kyu)%20What%20is%20between/(8%20kyu)%20What%20is%20between.ts>)]
1221+
/ [Python]
1222+
/ [Rust]
1223+
/ [C++]
1224+
/ [C#]
1225+
/ [Java]
1226+
/ [Go]
1227+
<br>
12171228
**[(8 kyu) You Can't Code Under Pressure #1](https://www.codewars.com/kata/53ee5429ba190077850011d4/)** ([Description](<8kyu/(8%20kyu)%20You%20Cant%20Code%20Under%20Pressure%201/(8%20kyu)%20You%20Cant%20Code%20Under%20Pressure%201.md>) +
12181229
JS Video Tutorial) :
12191230
[[JavaScript](<8kyu/(8%20kyu)%20You%20Cant%20Code%20Under%20Pressure%201/(8%20kyu)%20You%20Cant%20Code%20Under%20Pressure%201.js>)]

0 commit comments

Comments
 (0)