GithubHelp home page GithubHelp logo

algorithm-test's Introduction

Welcome to HLS interview!!

Code exam for interview


Mini-Max Sum

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 miniMaxSum 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.

miniMaxSum has the following parameter(s): arr: an array of 5 intergers

Input format
A single line of five space-separated intergrs

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.)
Simple input
1 2 3 4 5
Simple input
10 14


Our initial numbers are 1, 2, 3, 4 and 5. We can calculate the following sums using four of the five
integers:
1: If we sum everything except 1, our sum is: 2 + 3 + 4 + 5 = 14
2: If we sum everything except 2, our sum is: 1 + 3 + 4 + 5 = 13
3: If we sum everything except 3, our sum is: 1 + 2 + 4 + 5 = 12
4: If we sum everything except 4, our sum is: 1 + 2 + 3 + 5 = 11
5: If we sum everything except 5, our sum is: 1 + 2 + 3 + 4 = 10

Evaluation Criterion

Coder must finished at least 50% of the requirements to be given a pass. Evaluation will be based on speed, code quality and critical thinking. Grading is pessimistic - You will not get an A unless you clearly show you are an A. Some signs of an A is not enough.

The general grading is such that

Grade What it means
A Above our standard
B Met our standard
C Not good enough
D This is seriously not good
E Why should we hire you?

The evaluation form for a coder is as below:

Name:
Date of Evaluation:

Completeness of project (%):
Bonus completeness (%):
Overall Grade:

Git Commits
A – Great commit messages and structure
B – Good commit messages and structure
C – Okay commit messages and structure
D – Poor commit messages and strucuture
E – No use of git

Test Coverage
A – Critical paths are covered
B – Some critical paths are covered
C – Few critical paths are covered
D – Little or no test cases
E – No test cases!!!

Bouns:
+ Count total of array
+ Find min in array
+ Find max in array
+ Find even elements in array
+ Find odd elements in array

algorithm-test's People

Watchers

manh avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.