Eduard Kozynkevych

Eduard Teodorovych Kozynkevych (Ukrainian: Едуард Теодорович Козинкевич, Russian: Эдуард Теодорович Козинкевич; born 23 May 1949; died 16 November 1994) was a Ukrainian footballer.

Eduard Kozynkevych
Personal information
Full name Eduard Teodorovych Kozynkevych
Date of birth (1949-05-23)23 May 1949
Place of birth Lviv, USSR
Date of death 16 November 1994(1994-11-16) (aged 45)
Place of death Lviv, Ukraine
Height 1.82 m (6 ft 0 in)
Playing position(s) Striker
Youth career
SKA Lviv
Senior career*
Years Team Apps (Gls)
1967–1969 SKA Lviv 73 (13)
1970–1971 FC Shakhtar Donetsk 58 (17)
1972–1974 SKA Lviv 77 (14)
1975 FC Dynamo Moscow 4 (0)
1976–1978 SKA Lviv 58 (4)
Total 270 (48)
National team
1972 USSR 6 (1)
Teams managed
SKA Lviv (youth teams)
Philadelphia Tryzub
* Senior club appearances and goals counted for the domestic league only

International career

He earned 6 caps for the USSR national football team, and participated in UEFA Euro 1972.

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.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.