-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path0677-map-sum-pairs.js
39 lines (36 loc) · 1.05 KB
/
0677-map-sum-pairs.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
* 677. Map Sum Pairs
* https://leetcode.com/problems/map-sum-pairs/
* Difficulty: Medium
*
* Design a map that allows you to do the following:
* - Maps a string key to a given value.
* - Returns the sum of the values that have a key with a prefix equal to a given string.
*
* Implement the MapSum class:
* - MapSum() Initializes the MapSum object.
* - void insert(String key, int val) Inserts the key-val pair into the map. If the key
* already existed, the original key-value pair will be overridden to the new one.
* - int sum(string prefix) Returns the sum of all the pairs' value whose key starts
* with the prefix.
*/
var MapSum = function() {
this.map = new Map();
};
/**
* @param {string} key
* @param {number} val
* @return {void}
*/
MapSum.prototype.insert = function(key, val) {
this.map.set(key, val);
};
/**
* @param {string} prefix
* @return {number}
*/
MapSum.prototype.sum = function(prefix) {
return [...this.map.entries()].reduce((total, [key, val]) => {
return key.startsWith(prefix) ? total + val : total;
}, 0);
};