일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- CS
- Computer Science
- SECS
- SECS/GEM
- C++
- linux
- modern c++
- c
- 자바
- 회귀
- 백준
- 프로그래머스
- Spotify Api
- spotify
- Spring
- 스포티파이
- regression
- SWEA
- MYSQL
- SECS-II
- python
- 파이썬
- spring boot
- 회원가입
- SW Expert Academy
- Baekjoon
- Spring JPA
- programmers
- Gem
- java
Archives
- Today
- Total
비버놀로지
[Programmers 프로그래머스] 12944 평균 구하기 본문
728x90
programmers.co.kr/learn/courses/30/lessons/12944
정수를 담고 있는 배열 arr의 평균값을 return하는 함수, solution을 완성해보세요.
stream에서 재공하는 average를 이용하여 배열안에 있는 숫자들의 평균을 구할 수 있다.
결과값을 double로 표현하기 위해 getAsDouble을 이용하여 결과가 double 값으로 나올 수 있도록 했다.
import java.util.Arrays;
class Solution {
public double solution(int[] arr) {
double answer=0;
answer=Arrays.stream(arr).average().getAsDouble();
return answer;
}
}
728x90
'ALGORITM > JAVA' 카테고리의 다른 글
[Programmers 프로그래머스] 12948 핸드폰 번호 가리기 (0) | 2021.01.08 |
---|---|
[Programmers 프로그래머스] 12947 하샤드 수 (0) | 2021.01.08 |
[Programmers 프로그래머스] 12943 콜라츠 추측 (0) | 2021.01.08 |
[Programmers 프로그래머스] 12940 최대공약수와 최소공배수 (0) | 2021.01.08 |
[Programmers 프로그래머스] 67256 키패드 누르기 (0) | 2021.01.08 |
Comments