Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Tree
- Data Structure
- sorting
- Counting
- implement
- SQL
- Method
- bit manipulation
- Class
- database
- 파이썬
- java
- Number Theory
- Binary Search
- Binary Tree
- array
- Matrix
- greedy
- 자바
- dynamic programming
- Stack
- 코딩테스트
- 코테
- simulation
- two pointers
- string
- geometry
- hash table
- Math
- 구현
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.1] 평균 구하기 본문
1. Input
1) 정수 배열 arr
2. Output
1) arr의 평균값을 담은 double 변수
3. Constraint
1) arr의 길이는 1 이상, 100 이하
2) arr의 원소는 -10,000 이상 10,000 이하인 정수
4. Example
Input: arr={1,2,3,4} -> Output: 2.5
5. Code
1) 첫 코드(2022/??)
double answer = arr[0];
int n = arr.length;
for(int i=1 ; i<n ; i++)
answer += arr[i];
return answer/n;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.1] 최대공약수와 최소공배수 (0) | 2022.11.23 |
---|---|
[프로그래머스/Lv.1] 콜라츠 추측 (0) | 2022.11.23 |
[프로그래머스/Lv.1] 하샤드 수 (0) | 2022.11.23 |
[프로그래머스/Lv.1] 핸드폰 번호 가리기 (0) | 2022.11.23 |
[프로그래머스/Lv.1] 행렬의 덧셈 (0) | 2022.11.22 |