프로그래머스(Level 1) - 🍹 내적

Gammi·2023년 3월 25일
0

프로그래머스

목록 보기
50/69
post-thumbnail

✔ 문제






✔ 해결


class Solution {
  public long solution(int[] a, int[] b) {
    long answer = 0;
    
    for(int i = 0; i < a.length; i++) {
      answer += a[i] * b[i];
    }
    
    return answer;
  }
}








원래 리턴타입이 int였는데 뭔가 int로 하면 오버플로 발생할 것 같아서 long타입으로 바꿔줬다ㅎㅎ

이제 대충 int형일 때 오버플로 생기는 경우 감 잡은 것 같음ㅎㅎ

profile
개발자가 되었어요⭐️

0개의 댓글