중복없는 랜덤 리스트 생성하기 (파이썬)

1
2
3
4
5
6
7
8
9
def random_list(n):
    temp = list(range(n))
    result = []
    while len(temp) > 0:
        idx = int(random() * len(temp))
        result.append(temp[idx])
        del temp[idx]
    return result
 
cs




WRITTEN BY
hojongs
블로그 옮겼습니다 https://hojongs.github.io/