0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Codewars 8 kyu Total amount of points

Posted at

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
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?