Chicago Challenge
The Chicago Challenge was a golf tournament on the LPGA Tour from 1991 to 1994.[1] It was played in the Chicago, Illinois area: at the Oak Brook Golf Club in Oak Brook in 1991 and at the White Eagle Golf Club in Naperville from 1992 to 1994. The title sponsor for the first three years was the Chicago Sun-Times.
Winners
- Chicago Challenge
- 1994 Jane Geddes
- Sun-Times Challenge
- 1993 Cindy Schreyer
- 1992 Dottie Mochrie
- LPGA Chicago Sun-Times Shoot-Out
- 1991 Martha Nause
gollark: It was more elegance⢠to just make it able to do tail-call optimization.
gollark: I actually stole this particular quicksort from a r/haskell post talking about it.
gollark: ```lisp (let (partition_rec xs pred acc) (cond ((= xs '()) acc) (true (partition_rec (tail xs) pred (cond ((pred (head xs)) (list (cons (head xs) (head acc)) (snd acc))) (true (list (head acc) (cons (head xs) (snd acc)))) ))) )) (let (qsort xs cont) (cond ((= xs '()) (cont '())) (true (do (let h (head xs)) (let t (tail xs)) (let part_result (partition_rec t (lambda (x) (< x h)) '(() ()))) (qsort (head part_result) (lambda (ls) (qsort (snd part_result) (lambda (rs) (cont (+ ls (list h) rs)))))) )) ))```These all have to be done tail recursively or it could overflow.
gollark: Continuation passing style quicksort in a hilariously slow interpreter.
gollark: It manages *1* second, which is great.
References
- LPGA Tournament Chronology 1990-1999 Archived September 20, 2007, at the Wayback Machine
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.