Concatenation of Array (Leetcode 1929)

Problem Link: https://leetcode.com/problems/concatenation-of-array/

class Solution:
    def getConcatenation(self, nums: List[int]) -> List[int]:
        
        return nums+nums

Last updated