Marine Science Magnet High School
Marine Science Magnet High School of Southeastern Connecticut is a public high school in Groton, Connecticut, in the United States. It opened on September 1, 2011.[1]
Marine Science Magnet High School of Southeastern Connecticut | |
---|---|
Address | |
Marine Science Magnet High School of Southeastern Connecticut Marine Science Magnet High School of Southeastern Connecticut | |
130 Shennecossett Road , United States | |
Coordinates | 41.337507°N 72.071638°W |
Information | |
Type | Public high school |
Established | 2011 |
School district | LEARN |
Principal | Vacant |
Grades | 9-12 |
Number of students | 272 |
Color(s) | Red, White and Blue |
Mascot | Sharks |
Newspaper | The Shark Tooth |
Website | marinesciencemagnet |
In the academic year 2012–2013 there were 178 students enrolled in grades 9–11, of which 94 were male and 84 female. Approximately 93% were ethnically white, and 7% Hispanic.[2]
Notes
- Marine Science Magnet High School of Southeastern Connecticut: About the School. Marine Science Magnet High School of Southeastern Connecticut. Accessed April 2015.
- School Name: Marine Science Magnet High School of Southeastern. U.S. Department of Education: Institute of Education Sciences: National Center for Education Statistics. Accessed April 2015.
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.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.