forked from fmasanori/PPZ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLista 06 CodingBat.py
190 lines (169 loc) · 4.68 KB
/
Lista 06 CodingBat.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
180
181
182
183
184
185
186
187
188
189
#!/usr/bin/python -tt
# Exercícios by Nick Parlante (CodingBat)
# A. dormir
# dia_semana é True para dias na semana
# feriado é True nos feriados
# você pode ficar dormindo quando é feriado ou não é dia semana
# retorne True ou False conforme você vá dormir ou não
def dormir(dia_semana, feriado):
if dia_semana and not feriado:
return False
else:
return True
# B. alunos_problema
# temos dois alunos a e b
# a_sorri e b_sorri indicam se a e b sorriem
# temos problemas quando ambos estão sorrindo ou ambos não estão sorrindo
# retorne True quando houver problemas
def alunos_problema(a_sorri, b_sorri):
return
# C. soma_dobro
# dados dois números inteiros retorna sua soma
# porém se os números forem iguais retorna o dobro da soma
# soma_dobro(1, 2) -> 3
# soma_dobro(2, 2) -> 8
def soma_dobro(a, b):
return
# D. diff21
# dado um inteiro n retorna a diferença absoluta entre n e 21
# porém se o número for maior que 21 retorna dobro da diferença absoluta
# diff21(19) -> 2
# diff21(25) -> 8
# dica: abs(x) retorna o valor absoluto de x
def diff21(n):
return
# E. papagaio
# temos um papagaio que fala alto
# hora é um parâmetro entre 0 e 23
# temos problemas se o papagaio estiver falando
# antes da 7 ou depois das 20
def papagaio(falando, hora):
return
# F. dez
# dados dois inteiros a e b
# retorna True se um dos dois é 10 ou a soma é 10
def dez(a, b):
return
# G. dista10
# seja um inteiro n
# retorna True se a diferença absoluta entre n e 100 ou n e 200
# for menor ou igual a 10
# dista10(93) -> True
# dista10(90) -> True
# dista10(89) -> False
def dista10(n):
return
# H. apaga
# seja uma string s e um inteiro n
# retorna uma nova string sem a posição n
# apaga('kitten', 1) -> 'ktten'
# apaga('kitten', 4) -> 'kittn'
def apaga(s, n):
return
# I. troca
# seja uma string s
# se s tiver tamanho <= 1 retorna ela mesma
# caso contrário troca a primeira e última letra
# troca('code') -> 'eodc'
# troca('a') -> 'a'
# troca('ab') -> 'ba'
def troca(s):
return
# Provided simple test() function used in main() to print
# what each function returns vs. what it's supposed to return.
def test(obtido, esperado):
if obtido == esperado:
prefixo = ' Parabéns!'
else:
prefixo = ' Ainda não'
print ('%s obtido: %s esperado: %s'
% (prefixo, repr(obtido), repr(esperado)))
def main():
print ('Oba! Hoje vou ficar dormindo!')
test(dormir(False, False), True)
test(dormir(True, False), False)
test(dormir(False, True), True)
test(dormir(True, True), True)
print ()
print ('Alunos problema')
test(alunos_problema(True, True), True)
test(alunos_problema(False, False), True)
test(alunos_problema(True, False), False)
test(alunos_problema(False, True), False)
print ()
print ('Soma dobro')
test(soma_dobro(1, 2), 3)
test(soma_dobro(3, 2), 5)
test(soma_dobro(2, 2), 8)
test(soma_dobro(-1, 0), -1)
test(soma_dobro(0, 0), 0)
test(soma_dobro(0, 1), 1)
print ()
print ('Diff21')
test(diff21(19), 2)
test(diff21(10), 11)
test(diff21(21), 0)
test(diff21(22), 2)
test(diff21(25), 8)
test(diff21(30), 18)
print ()
print ('Papagaio')
test(papagaio(True, 6), True)
test(papagaio(True, 7), False)
test(papagaio(False, 6), False)
test(papagaio(True, 21), True)
test(papagaio(False, 21), False)
test(papagaio(True, 23), True)
test(papagaio(True, 20), False)
print ()
print ('Dez')
test(dez(9, 10), True)
test(dez(9, 9), False)
test(dez(1, 9), True)
test(dez(10, 1), True)
test(dez(10, 10), True)
test(dez(8, 2), True)
test(dez(8, 3), False)
test(dez(10, 42), True)
test(dez(12, -2), True)
print ()
print ('Dista 10')
test(dista10(93), True)
test(dista10(90), True)
test(dista10(89), False)
test(dista10(110), True)
test(dista10(111), False)
test(dista10(121), False)
test(dista10(0), False)
test(dista10(5), False)
test(dista10(191), True)
test(dista10(189), False)
test(dista10(190), True)
test(dista10(200), True)
test(dista10(210), True)
test(dista10(211), False)
test(dista10(290), False)
print ()
print ('Apaga')
test(apaga('kitten', 1), 'ktten')
test(apaga('kitten', 0), 'itten')
test(apaga('kitten', 4), 'kittn')
test(apaga('Hi', 0), 'i')
test(apaga('Hi', 1), 'H')
test(apaga('code', 0), 'ode')
test(apaga('code', 1), 'cde')
test(apaga('code', 2), 'coe')
test(apaga('code', 3), 'cod')
test(apaga('chocolate', 8), 'chocolat')
print ()
print ('Troca letras')
test(troca('code'), 'eodc')
test(troca('a'), 'a')
test(troca('ab'), 'ba')
test(troca('abc'), 'cba')
test(troca(''), '')
test(troca('Chocolate'), 'ehocolatC')
test(troca('nythoP'), 'Python')
test(troca('hello'), 'oellh')
if __name__ == '__main__':
main()