일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- SW Expert Academy
- SWEA
- Spotify Api
- spring boot
- SECS/GEM
- spotify
- Baekjoon
- c
- CS
- regression
- Gem
- Spring JPA
- MYSQL
- python
- modern c++
- programmers
- SECS
- 회원가입
- linux
- 백준
- 프로그래머스
- Computer Science
- java
- 회귀
- Spring
- 자바
- C++
- 파이썬
- 스포티파이
- SECS-II
Archives
- Today
- Total
비버놀로지
[Programmers 프로그래머스] 70128 내적 본문
728x90
programmers.co.kr/learn/courses/30/lessons/70128
내적은 같은 위치에 있는 배열값들을 곱한후 더해주는 것을 내적이라고 한다.
그래서 for문을 통해서 같은 위치값을 곱해서 더해서 출력을 해준다.
class Solution {
public int solution(int[] a, int[] b) {
int answer=0;
for (int i = 0; i < b.length; i++) {
answer+=a[i]*b[i];
}
return answer;
}
}
728x90
'ALGORITM > JAVA' 카테고리의 다른 글
[Programmers 프로그래머스] 12928 약수의 합 (0) | 2021.01.08 |
---|---|
[Programmers 프로그래머스] 12926 시저 암호 (0) | 2021.01.08 |
[Programmers 프로그래머스] 12925 문자열을 정수로 바꾸기 (0) | 2021.01.07 |
[Programmers 프로그래머스] 12922 수박수박수박수박수박수? (0) | 2021.01.07 |
[Programmers 프로그래머스] 12921 소수 찾기 (0) | 2021.01.07 |
Comments