-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathASSIGNMENT.txt
14 lines (9 loc) · 1.29 KB
/
ASSIGNMENT.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Your task is to implement a web application that displays rock-paper-scissors match results. The web application must display the games as they are in progress, and you must also be able to look at historical results of individual players. In addition, the currently ongoing games must be visible at all times.
The historical results must include all games that a player has played and it must also include the following aggregate data: win ratio, total number of matches played, and the most played hand (rock, paper, or scissors).
There are two API endpoints running at https://bad-api-assignment.reaktor.com. /rps/history which returns a page of historical data, and a path for the next page of data. Be aware that there are many pages of data. The other endpoint /rps/live is a WebSocket API and will send events to connected clients as they happen.
Your application does not need to look especially pretty (but it won’t hurt) but it should be fast and snappy, showing data to the end user as fast as possible and being up-to-date with the backend.
In no particular order, we especially pay attention to the following details when looking at your submission:
Readability of the code as whole
Performance and maintainability
Technology and library choices made
User interface and experience