-
Completed at: 2023-01-10T04:53:47.737Z
-
Completed languages: ruby
-
Tags: Fundamentals, Arrays, Lists
-
Rank: 8 kyu
Given an array of integers.
Return an array, where the first element is the count of positives numbers and the second element is sum of negative numbers. 0 is neither positive nor negative.
If the input is an empty array or is null, return an empty array.
For input [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, -11, -12, -13, -14, -15], you should return [10, -65].