2020년/Development
python 서로 겹치지 않는 세자리 수 배열 만들기
numbers = [ str(x) for x in range(1, 10) ] #참조할 배열을 만들고 candidates = [ numbers[x] + numbers[y] + numbers[z] for x in range(9) for y in range(9) for z in range(9) if x != y and y != z and z != x ] #앞서 작성한 참조배열을 가지고 만들면 됨 >>> can ['123', '124', '125', '126', '127', '128', '129', '132', '134', '135', '136', '137', '138', '139', '142', '143', '145', '146', '147', '148', '149', '152', '153', '154', '..
2020. 4. 26. 17:35