-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwarmup-2.py
More file actions
executable file
·94 lines (82 loc) · 2.34 KB
/
warmup-2.py
File metadata and controls
executable file
·94 lines (82 loc) · 2.34 KB
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
# string_times
def string_times(str, n):
'''
Given a string and a non-negative int n, return a larger string that is n copies of
the original string.
'''
return str*n
# front_times
def front_times(str, n):
'''
Given a string and a non-negative int n, we'll say that the front of the string is the
first 3 chars, or whatever is there if the string is less than length 3. Return n copies
of the front;
'''
return str[:3]*n
# string_bits
def string_bits(str):
'''
Given a string, return a new string made of every other char starting with the first,
so "Hello" yields "Hlo".
'''
l = ""
for i in range(len(str)):
if i % 2 == 0:
l += str[i]
return l
# string_splosion
def string_splosion(str):
'''
Given a non-empty string like "Code" return a string like "CCoCodCode".
'''
s = ""
for i in range(len(str)+1):
s += str[:i]
return s
# last2
def last2(str):
'''
Given a string, return the count of the number of times that a substring length 2 appears
in the string and also as the last 2 chars of the string, so "hixxxhi" yields 1 (we won't
count the end substring).
'''
ctr = 0
for i in range(len(str) - 2):
if str[i:i + 2] == str[-2:]:
ctr += 1
return ctr
# array_counts
def array_count9(nums):
'''
Given an array of ints, return the number of 9's in the array.
'''
return nums.count(9)
# array_front9
def array_front9(nums):
'''
Given an array of ints, return True if one of the first 4 elements in the array is a 9.
The array length may be less than 4.
'''
return 9 in n[0:4]
# array123
def array123(nums):
'''
Given an array of ints, return True if the sequence of numbers 1, 2, 3 appears in the array
somewhere.
'''
for i in range(len(numbers) - 2):
if numbers[i:i+3] == [1,2,3]:
return True
return False
# string_match
def string_match(a, b):
'''
Given 2 strings, a and b, return the number of the positions where they contain the same length
2 substring. So "xxcaazz" and "xxbaaz" yields 3, since the "xx", "aa", and "az" substrings
appear in the same place in both strings.
'''
count = 0
for i in range(len(a) - 1):
if a[i: i + 2] == b[i: i + 2]:
count += 1
return count