Guti (Brazilian footballer)
Gutieri Tomelin (born June 29, 1991 in São Bento do Sul), is a Brazilian central defender. He currently plays for NK Osijek.
Personal information | |||
---|---|---|---|
Full name | Gutieri Tomelin | ||
Date of birth | June 29, 1991 | ||
Place of birth | São Bento do Sul, Brazil | ||
Height | 1.87 m (6 ft 2 in) | ||
Playing position(s) | Defender | ||
Club information | |||
Current team | NK Osijek | ||
Number | 4 | ||
Youth career | |||
Figueirense | |||
Senior career* | |||
Years | Team | Apps | (Gls) |
2011–2014 | Figueirense | 16 | (0) |
2014 | → Duque de Caxias (loan) | 0 | (0) |
2014–2016 | Joinville | 51 | (1) |
2016–2018 | Jagiellonia Białystok | 63 | (1) |
2018– | Osijek | 29 | (1) |
* Senior club appearances and goals counted for the domestic league only and correct as of 10 May 2019 |
Honours
- Joinville
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.
gollark: It manages *1* second, which is great.
gollark: When writing osmarkslisp™, I cared about performance to the extent that it would sort a list of 200 integers in under 5 seconds.
gollark: `b"%s"`?
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.