1990 Torneo Internazionale
The 1990 Torneo Internazionale was a women's tennis tournament played on outdoor clay courts at the Country Time Club in Palermo, Italy that was part of the Tier V category of the 1990 WTA Tour. It was the third edition of the tournament and was held from 9 July until 13 July 1990. Second-seeded Isabel Cueto won the singles title.[1][2]
1990 Torneo Internazionale | |
---|---|
Date | 9–13 July |
Edition | 3rd |
Category | Tier V |
Draw | 32S / 16D |
Prize money | $75,000 |
Surface | Clay / outdoor |
Location | Palermo, Italy |
Venue | Country Time Club |
Champions | |
Singles | |
![]() | |
Doubles | |
![]() ![]() |
Finals
Singles
- It was Cueto's 1st singles title of the year and the 5th and last of her career.
Doubles
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
- John Barrett, ed. (1991). The International Tennis Federation : World of Tennis 1991. London: Collins Willow. pp. 151, 168. ISBN 9780002184038.
- Bloch Shallouf, Renee; Clerys, Doug, eds. (1991). 1991 Women's Tennis Association Media Guide. Miami: WTA. p. 350.
External links
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.