Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

192

Concatenation of array class Solution: def getConcatenation(self, nums: List[int]) -> List[int]: ans = []

    for i in range(2):
        for n in nums:
            ans.append(n)
    return ans      

About

Concatenation of array

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors