2019 World Single Distances Speed Skating Championships – Women's team sprint

The Women's team sprint competition at the 2019 World Single Distances Speed Skating Championships was held on 7 February 2019.[1][2]

Women's team sprint
at the 2019 World Single Distances Speed Skating Championships
VenueMax Aicher Arena
LocationInzell, Germany
Dates7 February
Competitors21 from 7 nations
Teams7
Winning time1:26.28
Medalists
    Netherlands
    Canada
    Russia

Results

The race was started at 16:00.[3]

RankPairLaneCountryTimeDiff
4s Netherlands1:26.28
3c Canada1:27.21+0.93
3s Russia1:27.26+0.98
44c Italy1:28.18+1.90
52s China1:29.15+2.87
62c South Korea1:29.83+3.55
71s Norway1:30.56+4.28
gollark: And 🦀Safe Rust™🦀.
gollark: See, this is much nicer.
gollark: ```rustpub struct List<T> { head: Link<T>,}type Link<T> = Option<Box<Node<T>>>;struct Node<T> { elem: T, next: Link<T>,}impl<T> List<T> { pub fn new() -> Self { List { head: None } } pub fn push(&mut self, elem: T) { let new_node = Box::new(Node { elem: elem, next: self.head.take(), }); self.head = Some(new_node); } pub fn pop(&mut self) -> Option<T> { self.head.take().map(|node| { self.head = node.next; node.elem }) }}impl<T> Drop for List<T> { fn drop(&mut self) { let mut cur_link = self.head.take(); while let Some(mut boxed_node) = cur_link { cur_link = boxed_node.next.take(); } }}```
gollark: ... or at all?
gollark: You don't have a thing to efficiently deallocate the list.

References

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