博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
575.分糖果
阅读量:6258 次
发布时间:2019-06-22

本文共 257 字,大约阅读时间需要 1 分钟。

1/** 2 * @param  {number[]} candies 3 * @return {number} 4 */ 5var distributeCandies = function(candies) {
6    const types = new Set(candies).size; 7 8    return Math.min(types, candies.length / 2) 9};

转载于:https://www.cnblogs.com/rencoo/p/10137729.html

你可能感兴趣的文章
OFBIZ Party Relationship 关系图
查看>>
获取Cookie(未测试)
查看>>
SQL Server 2008的备份和日志收缩
查看>>
注意linux bash缓存
查看>>
Html 常用事件列表
查看>>
UITextView 实现placeholder的方法
查看>>
Maven入门实战笔记-11节[1-5]
查看>>
python的多重继承
查看>>
索引 - 索引排序顺序
查看>>
MoSQL:简化MongoDB与PostgreSQL之间的同步[转]
查看>>
source insight中文显示和处理
查看>>
spring3.1, hibernate4.1 配置备份,struts2.2.1,sitemesh 2.4.2
查看>>
python字符串格式化输出的方式
查看>>
buffer busy waits等待事件
查看>>
MySQL版本之分:Community Server、Embedded Server、Enterprise Server
查看>>
JVM及遗传算法,转摘牛人牛文
查看>>
C#用DataTable实现Group by数据统计
查看>>
iframe如何刷新的三种解决方案
查看>>
每日英语:Fewer Foreigners Eye US Graduate Science Programs
查看>>
Socket异步通信——使用IAsyncResult
查看>>