일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- string
- 코딩테스트
- Microsoft
- Process
- algorithm
- File
- WPF
- logging
- .net
- Visual Studio
- windows10
- dotNET
- C#
- IValueConverter
- mysql
- csharp
- log
- Github
- Coding
- nullable
- commit
- windows
- chashtag
- convert
- coding-test
- Binding
- ListView
- tls
- git
- programmers
Archives
- Today
- Total
CHashtag
[프로그래머스] [C#] 내적 본문
반응형
안녕하세요.
오늘은 프로그래머스 코딩테스트 연습 문제인 "내적" 을 풀어 보았습니다.
문제 링크
https://programmers.co.kr/learn/courses/30/lessons/70128
문제 풀이 방법
이번 문제는 문제가 간단하여 문제 풀이를 생략하도록 하겠습니다.
이번 문제는 평균 약 0.17ms 정도의 속도로 테스트를 통과하였습니다.
코드
using System;
public class Solution {
public int solution(int[] a, int[] b) {
int answer = 0;
int length = a.Length;
for(int i=0; i< length; i++)
{
answer += a[i] * b[i];
}
return answer;
}
}
감사합니다.
반응형
'알고리즘' 카테고리의 다른 글
[프로그래머스] [C#] 체육복 (0) | 2021.07.05 |
---|---|
[프로그래머스] [C#] 기능개발 (0) | 2021.07.02 |
[프로그래머스] [C#] 로또의 최고 순위와 최저 순위 (0) | 2021.07.02 |
[프로그래머스] [C#] 모의고사 (0) | 2021.06.30 |
[프로그래머스] [C#] 소수 만들기 (1) | 2021.06.28 |