https://leetcode.com/problems/stock-price-fluctuation/description/ - implement rest api around this problem to support CRUD operations.
Each datapoint will have stockCode, timestamp, price.
- POST -> store the data point for the give stock and timestamp.
- PUT -> Update the price for the given stock and timestamp.
- DELETE -> Delete the price point of the given stock and timestamp.
- GET -> latest, minimun, maximum stockPrice for the given stock
timestamp is unique in any given stock.