Richard Olivares
Richard Hans Olivares Lopez (born 4 September 1978) is a Chilean footballer.
Personal information | |||
---|---|---|---|
Full name | Richard Hans Olivares López | ||
Date of birth | 7 September 1978 | ||
Place of birth | Antofagasta, Chile | ||
Height | 1.70 m (5 ft 7 in) | ||
Playing position(s) | Forward | ||
Senior career* | |||
Years | Team | Apps | (Gls) |
1996–2001 | Magallanes | ||
2002 | Temuco | ||
2003 | Unión Española | ||
2003–2004 | América | ||
2004 | San Luis | ||
2005–2006 | Delf. Coatzacoalcos | ||
2006–2007 | Lobos BUAP | ||
2007–2014 | Antofagasta | ||
* Senior club appearances and goals counted for the domestic league only and correct as of 20 March 2020 |
He played for Deportes Antofagasta and other clubs in his country and Mexico.
Honours
gollark: And make it increment `i` itself.
gollark: You could also make it do `while #primes < tuning do`.
gollark: The `ipairs` iterator gives us `key, value` for each item of the table (in order). The key is unnecessary here, so it's just bound to `_`, the convention I've seen a lot for variables you're discarding.
gollark: As you can see, you don't actually need to explicitly compute the length anywhere.
gollark: Here's how I would do it:```lualocal function divisible_by_any(n, factors) for _, factor in ipairs(factors) do if n % factor == 0 then return true end end return falseendlocal primes = { 2, 3 }for i = 2, 100 do if not divisible_by_any(i, primes) then table.insert(primes, i) endendfor _, prime in ipairs(primes) do print(prime) end```
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.