blob: 12f03bb6e66e5f2cf3066d80499e45ce5ee0f980 (
plain)
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
42
43
44
45
46
47
48
49
50
51
|
#!/usr/bin/env python3
# Challenge 163
#
# Task 2: Summations
# Submitted by: Mohammad S Anwar
#
# You are given a list of positive numbers, @n.
#
# Write a script to find out the summations as described below.
# Example 1
#
# Input: @n = (1, 2, 3, 4, 5)
# Output: 42
#
# 1 2 3 4 5
# 2 5 9 14
# 5 14 28
# 14 42
# 42
#
# The nth Row starts with the second element of the (n-1)th row.
# The following element is sum of all elements except first element of previous
# row.
# You stop once you have just one element in the row.
#
# Example 2
#
# Input: @n = (1, 3, 5, 7, 9)
# Output: 70
#
# 1 3 5 7 9
# 3 8 15 24
# 8 23 47
# 23 70
# 70
import sys
from functools import reduce
def summation(*n):
n = list(n)
while len(n) > 1:
n.pop(0)
m = []
for i in range(len(n)):
m.append(sum(n[:i + 1]))
n = m
return n[0]
print(summation(*map(int, sys.argv[1:])))
|