摘要: 一个无序数组找其子序列构成的和最大,要求子序列中的元素在原数组中两两都不相邻: func GetSum(nums []int)int { len:=len(nums) if len==0{ return -1 } if len==1{ return nums[0] } if len==2{ retu 阅读全文
posted @ 2022-06-04 18:37 知道了呀~ 阅读(166) 评论(0) 推荐(0) 编辑