Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 420 Bytes

Question_1920.md

File metadata and controls

20 lines (16 loc) · 420 Bytes

LeetCode Records - Question 1920 Build Array from Permutation

Attempt 1: Use a loop

class Solution {
    public int[] buildArray(int[] nums) {
        int[] ans = new int[nums.length];

        for (int i = 0; i < nums.length; i++) {
            ans[i] = nums[nums[i]];
        }

        return ans;
    }
}
  • Runtime: 1 ms (Beats: 98.71%)
  • Memory: 44.95 MB (Beats: 81.38%)