HackerRank 문제: https://www.hackerrank.com/challenges/np-eye-and-identity/problem
import numpy as np
num = tuple(map(int, input().split(' ')))
arr = np.eye(*num, k=0)
np.set_printoptions(legacy='1.13')
print(arr)
'Computer Science > [20-4] Numpy 연습' 카테고리의 다른 글
[Numpy] (6) Array Mathematics (0) | 2020.04.03 |
---|---|
[Numpy] (4) Zeros and Ones (0) | 2020.04.01 |
[Numpy] (3) Concatenate로 여러개의 배열 합치기 (0) | 2020.03.31 |
[Numpy] (2) Transpose and Flatten, flatten()과 ravel()의 차이점 (0) | 2020.03.30 |
[Numpy] (1) Numpy arrays basic (0) | 2020.03.29 |
댓글