Last active
August 6, 2022 19:09
-
-
Save christopher4lis/fb803cbfc99c0a68e5ba to your computer and use it in GitHub Desktop.
A Swift array of all 50 of the U.S. states, plus its territories.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let usStatesArray = [ | |
"Alaska", | |
"Alabama", | |
"Arkansas", | |
"American Samoa", | |
"Arizona", | |
"California", | |
"Colorado", | |
"Connecticut", | |
"District of Columbia", | |
"Delaware", | |
"Florida", | |
"Georgia", | |
"Guam", | |
"Hawaii", | |
"Iowa", | |
"Idaho", | |
"Illinois", | |
"Indiana", | |
"Kansas", | |
"Kentucky", | |
"Louisiana", | |
"Massachusetts", | |
"Maryland", | |
"Maine", | |
"Michigan", | |
"Minnesota", | |
"Missouri", | |
"Mississippi", | |
"Montana", | |
"North Carolina", | |
"North Dakota", | |
"Northern Mariana Islands", | |
"Nebraska", | |
"New Hampshire", | |
"New Jersey", | |
"New Mexico", | |
"Nevada", | |
"New York", | |
"Ohio", | |
"Oklahoma", | |
"Oregon", | |
"Pennsylvania", | |
"Puerto Rico", | |
"Rhode Island", | |
"South Carolina", | |
"South Dakota", | |
"Tennessee", | |
"Texas", | |
"Utah", | |
"Virginia", | |
"U.S. Virgin Islands", | |
"Vermont", | |
"Washington", | |
"Wisconsin", | |
"West Virginia", | |
"Wyoming", | |
"International" | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment