Skip to content
Advertisement

What’s the shortest code to return a new array with only the first 2 elements of a given array?

While I was practicing Java problems on CodingBat I came across following problem statement.

Problem

Given an integer array of any length, return a new array of its first 2 elements. If the array is smaller than length 2, use whatever elements are present.

Example

JavaScript

My solution

JavaScript

My question

Though I have solved this question, my solution looks a bit long. So I’m looking for shorter while still accurate other solutions. Can you help me with this?

Advertisement

Answer

If you just want a shorter method and if returning the parameter itself when empty or with a single element is valid, then you can write this:

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement