Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- dacon
- 자연어처리
- AI 경진대회
- 편스토랑 우승상품
- ubuntu
- Baekjoon
- Docker
- 프로그래머스
- Git
- programmers
- 캐치카페
- 맥북
- 프로그래머스 파이썬
- 파이썬
- gs25
- 더현대서울 맛집
- leetcode
- 우분투
- 코로나19
- hackerrank
- Real or Not? NLP with Disaster Tweets
- Kaggle
- 데이콘
- github
- 편스토랑
- SW Expert Academy
- PYTHON
- ChatGPT
- 금융문자분석경진대회
- 백준
Archives
- Today
- Total
솜씨좋은장씨
[Programmers] 행렬의 곱셈 (Python) 본문
728x90
반응형
코딩 1일 1문제 오늘의 문제는 프로그래머스의 행렬의 곱셈 입니다
Solution
import numpy as np
def solution(arr1, arr2):
answer = [[]]
answer = (np.matrix(arr1)*np.matrix(arr2)).tolist()
return answer
Solution 풀이
numpy의 matrix를 활용하여 각각의 리스트를 행렬로 만들어준 다음 이를 곱한다음
다시 리스트로 변환한 값을 정답으로 return합니다.
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 1181번 : 단어 정렬 (Python) (0) | 2021.05.09 |
---|---|
[Programmers] N개의 최소공배수 (Python) (0) | 2021.05.08 |
[Programmers] JadenCase 문자열 만들기 (Python) (0) | 2021.05.06 |
[Programmers] 2020 카카오 인턴십 - 키패드 누르기 (Python) (0) | 2021.05.05 |
[Programmers] 시저 암호 (Python) (0) | 2021.05.04 |
Comments