1973 Amstel Gold Race
The 1973 Amstel Gold Race was the eighth edition of the annual road bicycle race "Amstel Gold Race", held on Sunday April 7, 1973, in the Dutch provinces of Limburg. The race stretched 238 kilometres, with the start in Heerlen and the finish in Meerssen. There were a total of 165 competitors, and 28 cyclists finished the race.
Result
Rank | Rider | Time |
---|---|---|
1 | 6:38:16 | |
2 | + 3.13 | |
3 | + 3.15 | |
4 | + 3.49 | |
5 | + 4.15 | |
6 | + 5.35 | |
7 | + 5.40 | |
8 | + 5.59 | |
9 | + 8.05 | |
10 | + 8.10 |
Further reading
- Duker, Peter (May 1973). "The Curse of the Amstel Gold". International Cycle Sport. No. 60. Keighley, UK: Kennedy Brothers Publishing. p. 8. ISSN 0020-6504. Retrieved 10 April 2020 – via InternationalCycleSport.com.
gollark: ```javascriptconst renderPlayer = (player) => { let str = "" for (let y = player.y - 5; y <= player.y + 5; y++) { for (let x = player.x - 10; x <= player.x + 10; x++) { let wallCol = getWallColor(x, y) if (x >= WIDTH) { str += wallCol } else if (y >= HEIGHT) { str += wallCol } else if (x < 0) { str += wallCol } else if (y < 0) { str += wallCol } else { let id = getEnemy(x, y) if (id != -1) { str += enemy_icons[enemies[id].id] } else { let id = getPlayer(x, y) if (id != -1) { str += players[id].icon } else { let id = getBonus(x, y) if (id != -1) { str += "?" } else { str += " " } } } } } str += "\n" } return str}```
gollark: YES, SOME OFFENSE.
gollark: As I said, this is not very good code.]
gollark: Every rendered tile.
gollark: I suppose baidicoot thought "hmm, how might I find whether a player is on a tile I'm rendering". Now, you might think "hmm yes, the solution to this is just to maintain a map of coordinates to entities, or something like that". But no! The game ITERATES OVER ALL PLAYERS FOR EVERY SINGLE TILE.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.