Eildon
Eildon is the largest committee area of the Scottish Borders Council, with a population of 34,892 at the latest census in 2001.[1]
Places in Eildon
- Alewater
- Clovenfords
- Denholm
- Earlston
- Galashiels
- Heriot
- Kilnknowe
- Ladhope
- Langlee
- Lauder
- Lauderdale
- Melrose
- Mossilee
- Netherdale
- Scott's View
- Selkirk
- Old Selkirk
- St Boswells
- Tweedbank
gollark: Yes, you can use my segfault fixer if that happens.
gollark: Doesn't it just segfault at some point?
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.
References
- Area committee population Archived 2006-09-27 at the Wayback Machine, Scottish Borders Council
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.