Vetal, South Dakota
Vetal is an unincorporated community in Bennett County, in the U.S. state of South Dakota.[1]
History
The community was named for Vetal Valandry, a pioneer settler.[2] A post office was established in 1912, and remained in operation until 1967.[3]
gollark: I believe this is O(n!), actually.
gollark: The performance is great too. It's not O(n²), it's an even more biggerer and thus superior order.
gollark: Of course.
gollark: I'm not entirely sure how, but it seems to construct a tree/maybe deterministic finite automaton/finite state machine/I don't know theoretical CS which matches anagrams and unmatches unanagrams.
gollark: ```pythonimport collectionsdef do_thing(s): if len(s) == 1: return { s[0]: True } out = {} for i, c in enumerate(s): without = s[:i] + s[i + 1:] things = do_thing(without) out[c] = things return outdef match(r, s): print(r) c = r for i, x in enumerate(s): print(x) try: c = c[x] if c == True: if i + 1 == len(s): return True # full match else: return False # characters remain except KeyError: return False # no match return False # incomplete matchentry = lambda a, b: match(do_thing(a.lower().replace(" ", "")), b.lower().replace(" ", ""))```Here is my entry (pending a port to osmarkslisp™️). This is definitely my entry.
References
- U.S. Geological Survey Geographic Names Information System: Vetal, South Dakota
- Federal Writers' Project (1940). South Dakota place-names, v.1-3. University of South Dakota. p. 65.
- "Bennett County". Jim Forte Postal History. Retrieved 2 February 2015.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.