Notice
Recent Posts
Recent Comments
«   2024/03   »
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
Tags
more
Archives
Today
Total
관리 메뉴

CHIqueen

[Intro] alternationSums 본문

프로그래밍/CodeSignal

[Intro] alternationSums

CHIqueen 2020. 3. 17. 14:50

Several people are standing in a row and need to be divided into two teams. The first person goes into team 1, the second goes into team 2, the third goes into team 1 again, the fourth into team 2, and so on.

You are given an array of positive integers - the weights of the people. Return an array of two integers, where the first element is the total weight of team 1, and the second element is the total weight of team 2 after the division is complete.

def alternatingSums(a):
    return [sum([a[i] for i in range(0,len(a),2)]),sum([a[i] for i in range(1,len(a),2)])]

다른 풀이를 보면 슬라이싱을 잘 이용했다. a[::2]

'프로그래밍 > CodeSignal' 카테고리의 다른 글

[Intro] Are Similar?  (0) 2020.03.17
[Intro] Add Border  (0) 2020.03.17
[Intro] reverseParenthese  (0) 2020.03.11
[Intro] Sort by Height  (0) 2020.03.11
[Intro] isLucky  (0) 2020.03.11
Comments