提交 bfa1424b 编写于 作者: GreyZeng's avatar GreyZeng

update notes

上级 b38124a8
package snippet;
// 笔记:https://www.cnblogs.com/greyzeng/p/16970094.html
// 给定一个正数数组arr, 请把arr中所有的数分成两个集合,尽量让两个集合的累加和接近
// 返回: 最接近的情况下,较小集合的累加和
public class Code_0083_SplitSumClosed {
public class Code_SplitSumClosed {
public static int splitSumClosed(int[] arr) {
if (arr == null || arr.length < 2) {
return 0;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册