Hamidou Djibo

Hamidou Djibo (born March 8, 1985 in Niger) is a Nigerien football striker. He currently plays for AS GNN in the Niger Premier League.

Hamidou Djibo
Personal information
Date of birth (1985-03-08) March 8, 1985
Place of birth Niamey, Niger
Playing position(s) Striker
Club information
Current team
AS GNN
Senior career*
Years Team Apps (Gls)
2005–2007 AS-FNIS ? (?)
2007 RC Kadiogo ? (?)
2007–2008 ES Sétif 0 (0)
2010– AS GNN
National team
2002– Niger 4 (2)
* Senior club appearances and goals counted for the domestic league only

Djibo was the member of the Niger national football team, and was part of the squad during the World Cup qualifiers.

Career

He previously played for ES Sétif from Algeria and the RC Kadiogo from Burkina Faso. He won national championship in 2011 with his club AS GNN.

International career

He was a member of the Niger national football team.

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.
gollark: Collections which work on a big chunk of memory or something *do* kind of have to use unsafe, linked lists or (some?) trees mostly don't.
gollark: And the unsafe stuff is better checked than in ©.


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