Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 693 Bytes

384.md

File metadata and controls

37 lines (28 loc) · 693 Bytes

384. Shuffle an Array

Solution 1

class Solution(object):

    def __init__(self, nums):
        """
        :type nums: List[int]
        """
        self.nums = nums


    def reset(self):
        """
        Resets the array to its original configuration and return it.
        :rtype: List[int]
        """
        return self.nums


    def shuffle(self):
        """
        Returns a random shuffling of the array.
        :rtype: List[int]
        """
        ans = self.nums[:]
        random.shuffle(ans)
        return ans


# Your Solution object will be instantiated and called as such:
# obj = Solution(nums)
# param_1 = obj.reset()
# param_2 = obj.shuffle()