Given an array of size 'N' which contains numbers
in some random order;
ur task is to return the sum of (N/2) smaller
elements;assume N is even;
for example:: if the array contains
2,5,7,6,3,4;
ur method should return 9
i.e;(2 3 4);
time constraint O(N);
Tags: