-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalgo18.cs
41 lines (29 loc) · 1020 Bytes
/
algo18.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
using System.Linq;
public static class Kata {
public static int TotalPoints(string[] games) {
////////////////////////////////////////////////////
int x = 0;
// Her bir elemanı : itibaren böl
for (int i = 0; i < games.Length; i++)
{
// Skorları ayrı değişkenlere ayır
int skor1 = int.Parse(games[i].Substring(0, games[i].IndexOf(':')));
int skor2 = int.Parse(games[i].Substring(games[i].IndexOf(':') + 1));
// Skoru kontrol et
if (skor1 > skor2)
{
x += 3;
}
else if (skor1 < skor2)
{
x += 0;
}
else
{
x += 1;
}
}
return x;
//////////////////////////////////////////////////
}
}