일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- KAKAO BLIND RECRUITMENT
- 백준
- 파이썬
- 다익스트라
- 정규식
- divmod
- Re
- 수학
- 동적 계획법
- heapq
- java
- 이분탐색
- programmers
- python
- DateTime
- 추석맞이 코딩챌린지
- Combinations
- 자바
- 위클리 챌린지
- Zip
- 프로그래머스
- 재귀함수
- 그리디
- Set
- dfs
- BFS
- 카카오
- 정렬
- lambda
- backjoon
Archives
- Today
- Total
상상쓰
[프로그래머스] 행렬의 곱셈 본문
https://programmers.co.kr/learn/courses/30/lessons/12949
numpy 가 통하는지 확인해봤다. 된다.
import numpy as np
def solution(arr1, arr2):
answer = np.array(arr1).dot(np.array(arr2))
return answer.tolist()
print(solution([[1, 4], [3, 2], [4, 1]], [[3, 3], [3, 3]])) # [[15, 15], [15, 15], [15, 15]]
'Coding Test' 카테고리의 다른 글
[백준] Passport Control (0) | 2021.07.08 |
---|---|
[프로그래머스] 단속카메라 (0) | 2021.07.07 |
[백준] 포도주 시식 (0) | 2021.07.05 |
[백준] 한조서열정리하고옴ㅋㅋ (0) | 2021.07.05 |
[백준] 과제 (0) | 2021.07.02 |
Comments