码迷,mamicode.com
首页 > 编程语言 > 详细

[LeetCode] Split Array With Same Average 分割数组成相同平均值的小数组

时间:2019-01-18 01:00:08      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:数组   The   art   put   int   相同   pos   only   either   

 

In a given integer array A, we must move every element of A to either list B or list C. (B and C initially start empty.)

Return true if and only if after such a move, it is possible that the average value of B is equal to the average value of C, and B and C are both non-empty.

Example :
Input: 
[1,2,3,4,5,6,7,8]
Output: true
Explanation: We can split the array into [1,4,5,8] and [2,3,6,7], and both of them have the average of 4.5.

Note:

  • The length of A will be in the range [1, 30].
  • A[i] will be in the range of [0, 10000].

 

s

 

[LeetCode] Split Array With Same Average 分割数组成相同平均值的小数组

标签:数组   The   art   put   int   相同   pos   only   either   

原文地址:https://www.cnblogs.com/grandyang/p/10285531.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!