Skip to content

Commit b49b78b

Browse files
authored
Create solution.hide.py
1 parent 918b6b5 commit b49b78b

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
coordinates_list = [[33.747252, -112.633853], [-33.867886, -63.987], [41.303921, -81.901693], [-33.350534, -71.653268]]
2+
3+
# Your code here
4+
5+
longitudes = []
6+
7+
for coord in coordinates_list:
8+
longitudes.append(coord[1])
9+
10+
for lon in longitudes:
11+
print(lon)

0 commit comments

Comments
 (0)