fork download
  1. class Solution(object):
  2. def getConcatenation(self, nums):
  3. """
  4. :type nums: List[int]
  5. :rtype: List[int]
  6. """
  7. return nums*2# your code goes here
Success #stdin #stdout 0.12s 13984KB
stdin
Standard input is empty
stdout
Standard output is empty