(key string, value string, timestamp int)
| 17 | } |
| 18 | |
| 19 | func (t *TimeMap) Set(key string, value string, timestamp int) { |
| 20 | t.m[key] = append(t.m[key], pair{timestamp, value}) |
| 21 | } |
| 22 | |
| 23 | func (t *TimeMap) Get(key string, timestamp int) (ans string) { |
| 24 | a := t.m[key] |
no outgoing calls
no test coverage detected