forked from mouredev/Weekly-Challenge-2022-Kotlin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchallenge28_solution.py
179 lines (115 loc) · 4.54 KB
/
challenge28_solution.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
#User Twitch: RearlanFDX
#Github: LeonardoReichert
#Lenguaje usado: Python
#
#Reto #28 de MoureDev
#MAQUINA EXPENDEDORA
#
#2022-07-12 02:49:24
#solo necesitamos ejecutarlo para probar el programa
circulating_coins = [5, 10, 50, 100, 200];
class MachineExpender:
def __init__(self, name):
self.products = {};
self.name = name;
def putProduct(self, num, name, price):
""" set or update products by num """
self.products[num] = (name, price);
def _validateCashCoins(self, coins):
#los miembros con prefijo _ no aparecen en help(obj)
""" internal method, validate user cash money """
return not False in [c in circulating_coins for c in coins];
def expendProduct(self, num, user_coins):
"""
return (err: string,
product name: string,
cashback: list,
)
err: "" == succes
"""
if not self._validateCashCoins(user_coins):
return "Invalid coins", "", user_coins;
elif not num in self.products:
return "Invalid product", "", user_coins;
name, price = self.products[num];
user_cash = sum(user_coins);
if price > user_cash:
return "Enough cash, need more cash", "", user_coins;
#vuelto, cashback:
totalback = user_cash - price;
#las monedas que la maquina puede devolver:
optionalcoins = circulating_coins.copy();
coinsback = [];
while sum(coinsback) < totalback:
#proxima moneda mas grande:
coin = max(optionalcoins);
#se prueba la moneda con la suma actual de monedas
if sum(coinsback)+coin > totalback:
#la suma si es mayor la cantidad a devolver
optionalcoins.remove(coin);
#se descarta y no se continua con ella
continue;
#efectiva, se la anyade a la suma
coinsback.append(coin);
#succes, exito
return "", name, coinsback;
def __str__(self):
""" str(MachineExpender) help for humans, show all products """
show = "Machine: %s\n" % self.name;
if not self.products:
return show+" - no have products on this machine.";
show += "Number | Name | Price\n";
for num in self.products:
name, price = self.products[num];
show += " #%05d | \"%s\" | $%d\n" % (num, name, price);
return show;
if __name__ == "__main__":
from random import choice, randrange;
print("Welcome to challenge #28 :)");
#los productos de prueba son:
#patatas fritas
#gaseosa - soda
#cafe
#chocolate
products = ["Potato chips",
"Soda",
"Coffe",
"Chocolate",
];
#creamos la maquina:
machine = MachineExpender("RearlanFDX expender");
#anyadimos productos
#los precios en la maquina seran random en esta "prueba":
idNum = 0;
for name in products:
idNum += 1;
price = 0;
for i in range(randrange(1, 3)):
#una o dos veces
#elegimos un a moneda random para sumar al precio:
price += choice(circulating_coins);
machine.putProduct(idNum, name, price);
#hemos creado la maquina y anyadido los productos
#ahora vamos a crear menu:
print(machine);
#<- muestra los productos y precios
state = True;
while state:
num = int(input("Enter number of product [1-%d]: " % len(products)));
print("Ok, now please enter the coins");
mycoins = [];
coin = int(input("Enter a first coin on machine as %s: " % str(circulating_coins) ));
mycoins.append(coin);
while coin:
coin = input(" ..more coins? enter or press only [Enter] to finish: ");
if coin:
mycoins.append(int(coin));
err, product, mycoins = machine.expendProduct(num, mycoins);
if not err:
print("Succes!");
print("Product:", product);
else:
print("Machine error: %s" % err);
print("Your coins:", mycoins);
state = input("continue? enter \"y\": ") == "y";
print("Good bye, adios ! ");