Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

min-max sum #7

Open
Sayan-dev opened this issue Jun 18, 2019 · 4 comments
Open

min-max sum #7

Sayan-dev opened this issue Jun 18, 2019 · 4 comments
Labels
good first issue Good for newcomers

Comments

@Sayan-dev
Copy link

Given five positive integers, find the minimum and maximum values that can be calculated by summing exactly four of the five integers. Then print the respective minimum and maximum values as a single line of two space-separated long integers.

For example,arr=[1,3,5,7,9]. Our minimum sum is 1+3+5+7=16 and our maximum sum is
3+5+7+9=24. We would print

16 24

Function Description

Complete the minMaxSum function in the editor below. It should print two space-separated integers on one line: the minimum sum and the maximum sum of 4 of 5 elements.

minMaxSum has the following parameter(s):

arr: an array of 5 integers

Input Format

A single line of five space-separated integers.

Output Format

Print two space-separated long integers denoting the respective minimum and maximum values that can be calculated by summing exactly four of the five integers. (The output can be greater than a 32 bit integer.)

Sample Input

1 2 3 4 5

Sample Output

10 14

@jddeep jddeep added the good first issue Good for newcomers label Jun 18, 2019
@Abhishekghosh1998
Copy link
Contributor

Good problem. What's the issue with it?

@jddeep
Copy link
Member

jddeep commented Jun 18, 2019

@Abhishekghosh1998 You have to send the code for the above problem. Here in this repo 'issue' signifies 'problem statement' for now. Check the format of #4

@Abhishekghosh1998
Copy link
Contributor

ok sending the code. wait!!

@tarmas99
Copy link

What if there are 5k elements in the array and not 5 ?
Try to solve it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

4 participants