dart Ratiorg得到了CodeMaster送给他的生日礼物a a不同大小的雕像

t2a7ltrp  于 2022-12-06  发布在  其他
关注(0)|答案(1)|浏览(91)

范例

`For statues = [6, 2, 3, 8], the output should be
solution(statues) = 3.

Ratiorg needs statues of sizes 4, 5 and 7.`

输入/输出
[执行时限] 4秒(js)
[输入]数组.整数状态
相异非负整数的数组。
保证约束:1 ≤个数,长度≤ 10,0 ≤个数[i] ≤ 20。
[输出]整数
需要添加到现有状态的最小状态数,以使其包含区间[L,R](对于某些L,R)中的所有整数大小,而不包含其他大小
我想用 dart 来解决我的问题

fcg9iug3

fcg9iug31#

你可以试试这个代码,我已经解决了这个程序的代码信号。

int solution(List<int> statues) {
    statues.sort((a, b) => { return a - b });
    return statues;
}

上面是 dart 的代码,你可以试试看

相关问题