A bookseller has plenty of books labeled in 26 classes labeled A, B, … Z. Every e book has a code c of three, 4, 5 or extra characters. The first character of a code is a capital letter which defines the e book class.
Within the bookseller’s stocklist every code c is adopted by an area and by a optimistic integer n (int n >= 0) which signifies the amount of books of this code in inventory.
For instance an extract of a stocklist could possibly be:
L = {"ABART 20", "CDXEF 50", "BKWRK 25", "BTSQZ 89", "DRTYM 60"}.
or
L = ["ABART 20", "CDXEF 50", "BKWRK 25", "BTSQZ 89", "DRTYM 60"] or ....
You’ll be given a stocklist (e.g. : L) and a listing of classes in capital letters e.g :
M = {"A", "B", "C", "W"}
or
M = ["A", "B", "C", "W"] or ...
and your activity is to seek out all of the books of L with codes belonging to every class of M and to sum their amount in response to every class.
For the lists L and M of instance you need to return the string:
(A : 20) - (B : 114) - (C : 50) - (W : 0)
the place A, B, C, W are the classes, 20 is the sum of the distinctive e book of class A, 114 the sum similar to “BKWRK” and “BTSQZ”, 50 similar to “CDXEF” and 0 to class ‘W’ since there are not any code starting with W.
If L
or M
are empty return string is “”.
Notes:
- Within the end result codes and their values are in the identical order as in M.
- See “Samples Assessments” for the return.
The Resolution in Python
Choice 1
def stock_list(listOfArt, listOfCat):
if (len(listOfArt) == 0) or (len(listOfCat) == 0):
return ""
end result = ""
for cat in listOfCat:
whole = 0
for e book in listOfArt:
if (e book[0] == cat[0]):
whole += int(e book.break up(" ")[1])
if (len(end result) != 0):
end result += " - "
end result += "(" + str(cat) + " : " + str(whole) + ")"
return end result
Choice 2
from collections import Counter
def stock_list(listOfArt, listOfCat):
if not listOfArt:
return ''
codePos = listOfArt[0].index(' ') + 1
cnt = Counter()
for s in listOfArt:
cnt[s[0]] += int(s[codePos:])
return ' - '.be part of('({} : {})'.format(cat, cnt[cat]) for cat in listOfCat)
Choice 3
def stock_list(stocklist, classes):
if not stocklist or not classes:
return ""
return " - ".be part of(
"({} : {})".format(
class,
sum(int(merchandise.break up()[1]) for merchandise in stocklist if merchandise[0] == class))
for class in classes)
Check circumstances to validate the answer
from answer import stock_list
import take a look at
@take a look at.describe("Testing")
def _():
@take a look at.it("Assessments")
def _():
b = ["BBAR 150", "CDXE 515", "BKWR 250", "BTSQ 890", "DRTY 600"]
c = ["A", "B", "C", "D"]
take a look at.assert_equals(stock_list(b, c), "(A : 0) - (B : 1290) - (C : 515) - (D : 600)")
b = ["ABAR 200", "CDXE 500", "BKWR 250", "BTSQ 890", "DRTY 600"]
c = ["A", "B"]
take a look at.assert_equals(stock_list(b, c), "(A : 200) - (B : 1140)")
b = ["CBART 20", "CDXEF 50", "BKWRK 25", "BTSQZ 89", "DRTYM 60"]
c = ["A", "B", "C", "W"]
take a look at.assert_equals(stock_list(b, c), "(A : 0) - (B : 114) - (C : 70) - (W : 0)")
b = ["ROXANNE 102", "RHODODE 123", "BKWRKAA 125", "BTSQZFG 239", "DRTYMKH 060"]
c = ["B", "R", "D", "X"]
take a look at.assert_equals(stock_list(b, c), "(B : 364) - (R : 225) - (D : 60) - (X : 0)")
b = []
c = ["B", "R", "D", "X"]
take a look at.assert_equals(stock_list(b, c), "")
b = ["ROXANNE 102", "RHODODE 123", "BKWRKAA 125", "BTSQZFG 239", "DRTYMKH 060"]
c = []
take a look at.assert_equals(stock_list(b, c), "")
b = ["ROXANNE 102", "RHODODE 123", "BKWRKAA 125", "BTSQZFG 239", "DRTYMKH 060"]
c = ["U", "V", "R"]
take a look at.assert_equals(stock_list(b, c), "(U : 0) - (V : 0) - (R : 225)")