-
Notifications
You must be signed in to change notification settings - Fork 0
/
py_data_structures.py
73 lines (69 loc) · 1016 Bytes
/
py_data_structures.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
states = [
"AL",
"AK",
"AZ",
"AR",
"CA",
"CO",
"CT",
"DE",
"FL",
"GA",
"HI",
"ID",
"IL",
"IN",
"IA",
"KS",
"KY",
"LA",
"ME",
"MD",
"MA",
"MI",
"MN",
"MS",
"MO",
"MT",
"NE",
"NV",
"NH",
"NJ",
"NM",
"NY",
"NC",
"ND",
"OH",
"OK",
"OR",
"PA",
"RI",
"SC",
"SD",
"TN",
"TX",
"UT",
"VT",
"VA",
"WA",
"WV",
"WI",
"WY",
]
# Continue code here
def find_states_with_start_value(start_value):
indexes = []
[
indexes.append(index)
for index, value in enumerate(states)
if start_value == value[0]
]
start_value_list = []
[start_value_list.append(states[index]) for index in indexes]
return start_value_list
M_list = find_states_with_start_value("M")
print(M_list)
W_list = find_states_with_start_value("W")
print(W_list)
V_list = find_states_with_start_value("V")
print(V_list)