Saint-Jean-le-Blanc, Calvados

Saint-Jean-le-Blanc is a former commune in the Calvados department in the Normandy region in northwestern France. On 1 January 2017, it was merged into the new commune Terres de Druance.[2]

Saint-Jean-le-Blanc
Location of Saint-Jean-le-Blanc
Saint-Jean-le-Blanc
Saint-Jean-le-Blanc
Coordinates: 48°56′11″N 0°39′09″W
CountryFrance
RegionNormandy
DepartmentCalvados
ArrondissementVire
CantonCondé-sur-Noireau
CommuneTerres de Druance
Area
1
15.1 km2 (5.8 sq mi)
Population
 (2017)[1]
367
  Density24/km2 (63/sq mi)
Time zoneUTC+01:00 (CET)
  Summer (DST)UTC+02:00 (CEST)
Postal code
14770
Elevation137–290 m (449–951 ft)
(avg. 223 m or 732 ft)
1 French Land Register data, which excludes lakes, ponds, glaciers > 1 km2 (0.386 sq mi or 247 acres) and river estuaries.

Population

Historical population
YearPop.±%
1962418    
1968401−4.1%
1975363−9.5%
1982291−19.8%
1990334+14.8%
1999318−4.8%
2008329+3.5%
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.
gollark: Continuation passing style quicksort in a hilariously slow interpreter.

See also

References



This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.