-
Notifications
You must be signed in to change notification settings - Fork 76
/
Lista 12 Google Python Class Resolução.py
126 lines (109 loc) · 3.28 KB
/
Lista 12 Google Python Class Resolução.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
# Copyright 2010 Google Inc.
# Licensed under the Apache License, Version 2.0
# http://www.apache.org/licenses/LICENSE-2.0
# Google's Python Class
# http://code.google.com/edu/languages/google-python-class/
# Exercícios extras
# G. verbing
# Dada uma string, caso seu comprimento seja pelo menos 3,
# adiciona 'ing' no final
# Caso a string já termine em 'ing', acrescentará 'ly'.
def verbing(s):
if len(s) >= 3:
if s[-3:] != 'ing':
s = s + 'ing'
else:
s = s + 'ly'
return s
# H. not_bad
# Dada uma string, procura a primeira ocorrência de 'not' e 'bad'
# Se 'bad' aparece depois de 'not' troca 'not' ... 'bad' por 'good'
# Assim 'This dinner is not that bad!' retorna 'This dinner is good!'
def not_bad(s):
n = s.find('not')
b = s.find('bad')
if b > n:
s = s[:n] + 'good' + s[b+3:]
return s
# I. inicio_final
# Divida cada string em dois pedaços.
# Se a string tiver um número ímpar de caracteres o primeiro pedaço terá um caracter a mais,
# Exemplo: 'abcde', divide-se em 'abc' e 'de'.
# Dadas 2 strings, a e b, retorna a string
# a_inicio + b_inicio + a_final + b_final
def inicio_final(a, b):
a_meio = len(a) // 2
b_meio = len(b) // 2
if len(a) % 2 == 1: # aumenta 1 se len é impar
a_meio = a_meio + 1
if len(b) % 2 == 1:
b_meio = b_meio + 1
return a[:a_meio] + b[:b_meio] + a[a_meio:] + b[b_meio:]
# J. zeros finais
# Verifique quantos zeros há no final de um número inteiro positivo
# Exemplo: 10010 tem 1 zero no fim e 908007000 possui três
def zf(n):
n = str(n)[::-1]
k = 0
while n[k] == '0':
k = k + 1
return k
a = int(str(n)[::-1])
return len(str(n)) - len(str(a))
# K. conta 2
# Verifique quantas vezes o dígito 2 aparece entre 0 e n-1
# Exemplo: para n = 20 o dígito 2 aparece duas vezes entre 0 e 19
def conta2(n):
s = ''
for i in range(n):
s = s + str(i)
return s.count('2')
# L. inicio em potencia de 2
# Dado um número inteiro positivo n retorne a primeira potência de 2
# que tenha o início igual a n
# Exemplo: para n = 65 retornará 16 pois 2**16 = 65536
def inip2(n):
k = 0
while True:
pot = str(2**k)
if pot.startswith(str(n)):
return k
k = k + 1
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 ('verbing')
test(verbing('hail'), 'hailing')
test(verbing('swiming'), 'swimingly')
test(verbing('do'), 'do')
print ()
print ('not_bad')
test(not_bad('This movie is not so bad'), 'This movie is good')
test(not_bad('This dinner is not that bad!'), 'This dinner is good!')
test(not_bad('This tea is not hot'), 'This tea is not hot')
test(not_bad("It's bad yet not"), "It's bad yet not")
print ()
print ('inicio_final')
test(inicio_final('abcd', 'xy'), 'abxcdy')
test(inicio_final('abcde', 'xyz'), 'abcxydez')
test(inicio_final('Kitten', 'Donut'), 'KitDontenut')
print ()
print ('zeros finais')
test(zf(10100100010000), 4)
test(zf(90000000000000000010), 1)
print ()
print ('conta 2')
test(conta2(20), 2)
test(conta2(999), 300)
test(conta2(555), 216)
print ()
print ('inicio p2')
test(inip2(7), 46)
test(inip2(133), 316)
test(inip2(1024), 10)
if __name__ == '__main__':
main()