Skip to content

Latest commit

 

History

History
162 lines (119 loc) · 3.41 KB

1920-Leetcode.md

File metadata and controls

162 lines (119 loc) · 3.41 KB

© Aryan Mishra

  1. Build Array from Permutation

C++

#include <vector>

class Solution {
public:
    std::vector<int> buildArray(std::vector<int>& nums) {
        // Creating a vector of the same length as the given vector
        std::vector<int> arr(nums.size());

        // Running the loop according to the length
        for (int i = 0; i < nums.size(); i++) {

            // Doing the same thing as explained in logic
            arr[i] = nums[nums[i]];
        }

        return arr;
    }
};

Java

class Solution {
    public int[] buildArray(int[] nums) {
        // Creating an array of the same length as the given array
        int arr[] = new int[nums.length];

        // Running the loop according to the length
        for (int i = 0; i < nums.length; i++) {

            // Doing the same thing as explained in logic
            arr[i] = nums[nums[i]];
        }

        return arr;
    }
}

Python

class Solution:
    def buildArray(self, nums):
        # Creating a list of the same length as the given list
        arr = [0] * len(nums)

        # Running the loop according to the length
        for i in range(len(nums)):

            # Doing the same thing as explained in logic
            arr[i] = nums[nums[i]]

        return arr

Python3

class Solution:
    def buildArray(self, nums):
        # Creating a list of the same length as the given list
        arr = [0] * len(nums)

        # Running the loop according to the length
        for i in range(len(nums)):

            # Doing the same thing as explained in logic
            arr[i] = nums[nums[i]]

        return arr

C

#include <stdio.h>
#include <stdlib.h>

int* buildArray(int* nums, int numsSize, int* returnSize) {
    // Creating an array of the same length as the given array
    int* arr = (int*)malloc(numsSize * sizeof(int));

    // Running the loop according to the length
    for (int i = 0; i < numsSize; i++) {

        // Doing the same thing as explained in logic
        arr[i] = nums[nums[i]];
    }

    *returnSize = numsSize;
    return arr;
}

C#

public class Solution {
    public int[] BuildArray(int[] nums) {
        // Creating an array of the same length as the given array
        int[] arr = new int[nums.Length];

        // Running the loop according to the length
        for (int i = 0; i < nums.Length; i++) {

            // Doing the same thing as explained in logic
            arr[i] = nums[nums[i]];
        }

        return arr;
    }
}

JavaScript

class Solution {
    buildArray(nums) {
        // Creating an array of the same length as the given array
        const arr = new Array(nums.length);

        // Running the loop according to the length
        for (let i = 0; i < nums.length; i++) {

            // Doing the same thing as explained in logic
            arr[i] = nums[nums[i]];
        }

        return arr;
    }
}

TypeScript

class Solution {
    buildArray(nums: number[]): number[] {
        // Creating an array of the same length as the given array
        const arr: number[] = new Array(nums.length);

        // Running the loop according to the length
        for (let i = 0; i < nums.length; i++) {

            // Doing the same thing as explained in logic
            arr[i] = nums[nums[i]];
        }

        return arr;
    }
}