javascript 771.珠宝和石头
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 771.珠宝和石头相关的知识,希望对你有一定的参考价值。
// basic solution
// time complexity: sort O(nlogn), map + filter O(n^2)
// total time complexity: O(n^2)
/**
* @param {string} J
* @param {string} S
* @return {number}
*/
var numJewelsInStones = function(J, S) {
const sortedS = _.sortBy(S);
return _.map(J, j => {
return _.filter(sortedS, s => s === j).length;
})
.reduce((len1, len2) => len1 + len2)
};
_
以上是关于javascript 771.珠宝和石头的主要内容,如果未能解决你的问题,请参考以下文章
771. Jewels and Stones 珠宝和石头
[LeetCode] 771. Jewels and Stones 珠宝和石头
771. 宝石与石头
771. 宝石与石头
771.宝石与石头
LeetCode771. 宝石与石头(C++)