Skip to content

Commit 2fa2dba

Browse files
committed
solved "Total amount of points" in TS
1 parent 3442dbb commit 2fa2dba

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
export function points(games: string[]): number {
2+
return games.reduce((res, game) => {
3+
const [x, y] = game.split(":");
4+
5+
if (+x > +y) {
6+
return (res += 3);
7+
} else if (x === y) {
8+
return (res += 1);
9+
}
10+
11+
return res;
12+
}, 0);
13+
}

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1347,7 +1347,7 @@ JS Video Tutorial) :
13471347
**[(8 kyu) Total amount of points](https://www.codewars.com/kata/5bb904724c47249b10000131/)** ([Description](<8kyu/(8%20kyu)%20Total%20amount%20of%20points/(8%20kyu)%20Total%20amount%20of%20points.md>) +
13481348
JS Video Tutorial) :
13491349
[[JavaScript](<8kyu/(8%20kyu)%20Total%20amount%20of%20points/(8%20kyu)%20Total%20amount%20of%20points.js>)]
1350-
/ [TypeScript]
1350+
/ [[TypeScript](<8kyu/(8%20kyu)%20Total%20amount%20of%20points/(8%20kyu)%20Total%20amount%20of%20points.ts>)]
13511351
/ [Python]
13521352
/ [Rust]
13531353
/ [C++]

0 commit comments

Comments
 (0)