LeetCode: Concatenation of Array Solution

.concat() or spread operator

Implementation

Using spead operator

1var getConcatenation = function (nums) {
2 return [...nums, ...nums]
3}

Using

Array.prototype.concat()

1var getConcatenation = function (nums) {
2 return nums.concat(nums)
3}

Comments

Loading comments...

Tags

leetcode

array

Apply and earn a $2,500 bonus once you're hired on your first job!

Clients from the Fortune 500 to Silicon Valley startups

Choose your own rate, get paid on time

From hourly, part-time, to full-time positions

Flexible remote working environment

A lot of open JavaScript jobs!!

Fact corner: Referred talent are 5x more likely to pass the Toptal screening process than the average applicant.

Still hesitate? Read HoningJS author's guide on dealing with Toptal interview process.

Next Post

LeetCode: Pascal's Triangle II

Aug 29, 2021

Calculate Pascal's Triangle at a specific row

Previous Post

LeetCode: Check If String Is a Prefix of Array

Aug 27, 2021

Accumulated concatenation and check

HoningJS

Search Posts