LeetCode: Build Array from Permutation Solution

Straight-forward map

Approach

Just map, following the description's formula

Implementation

1var buildArray = function (nums) {
2 return nums.map(n => nums[n])
3}

References

Original problem

Comments

Loading comments...

Tags

leetcode

array

Next Post

Yarn cache large disk usage

Jul 29, 2022

It took 30GB prior to the time I cleared the cache

Previous Post

LeetCode: Ugly Number

Jul 20, 2022

Recursively dividing

HoningJS

Search Posts