[프로그래머스,Level 1] 평균 구하기(JAVA 구현)
·
CodingTest/프로그래머스(Programmers)
- 첫 풀이 및 정답풀이 class Solution { public double solution(int[] arr) { double answer = 0; int sum = 0; // 1. 모든 원소 합. for(int i = 0; i