-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path069_Thinkful - List and Loop Drills Lists of lists.py
72 lines (43 loc) · 1.32 KB
/
069_Thinkful - List and Loop Drills Lists of lists.py
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
"""
Codewars Coding Challenge
Day 69/366
Level 7kyu
Thinkful - List and Loop Drills: Lists of lists
You have a two-dimensional list in the following format:
data = [[2, 5], [3, 4], [8, 7]]
Each sub-list contains two items, and each item in the sub-lists is an integer.
Write a function process_data()/processData() that processes each sub-list like so:
[2, 5] --> 2 - 5 --> -3
[3, 4] --> 3 - 4 --> -1
[8, 7] --> 8 - 7 --> 1
and then returns the product of all the processed sub-lists: -3 * -1 * 1 --> 3.
For input, you can trust that neither the main list nor the sublists will be empty.
def process_data(data):
pass # Your code here
https://www.codewars.com/kata/586e1d458cb711f0a800033b/train/python
"""
# My Solution
def process_data(data):
result = 1
for sublist in data:
diff = sublist[0] - sublist[1]
result *= diff
return result
"""
Sample Tests
from solution import process_data
import codewars_test as test
@test.describe("Lists of lists")
def lists_of_lists():
@test.it("Examples")
def examples():
test.assert_equals(process_data([[2, 5], [3, 4], [8, 7]]), 3)
test.assert_equals(process_data([[2, 9], [2, 4], [7, 5]]), 28)
"""
"""
Solutions From Codewars
=1=
from math import prod
def process_data(data):
return prod(i[0] - i[1] for i in data)
"""