Codewars 8 kyu Total amount of points
https://www.codewars.com/kata/5bb904724c47249b10000131/train/python
Task
We need to write a function that takes this collection and returns the number of points our team (x) got in the championship.
Verbalization
Split by “:”
Compare first row (use [0]) and second row (use [1]), treat [0] and [1] as number.
if x > y, add 3. if x < y, add 0, if x = y, add 1
Code
def points(games):
n = 0
for i in games:
i = i.split(":")
if int(i[0]) > int(i[1]):
n += 3
if int(i[0]) < int(i[1]):
n += 0
if int(i[0]) == int(i[1]):
n += 1
return n
Other solution.
# Wow, can be solved without using “split”.
def points(games):
result = 0
for item in games:
result += 3 if item[0] > item[2] else 0
result += 1 if item[0] == item[2] else 0
return result