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
- Matrix
- 자바
- hash table
- Class
- SQL
- 파이썬
- Number Theory
- Binary Search
- Binary Tree
- 구현
- two pointers
- Method
- Data Structure
- implement
- database
- 코테
- sorting
- 코딩테스트
- bit manipulation
- simulation
- Math
- dynamic programming
- string
- array
- Stack
- geometry
- Counting
- java
- greedy
- Tree
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 2455. Average Value of Even Numbers That Are Divisible by Three 본문
코딩테스트 풀이/JAVA
[LeetCode/Easy] 2455. Average Value of Even Numbers That Are Divisible by Three
무지맘 2023. 5. 4. 15:111. Input
1) int[] nums
2. Output
1) nums에 있는 양의 정수들 중 3으로 나누어 떨어지는 짝수의 평균을 소수 첫째자리에서 버림한 값을 반환
3. Constraint
1) 1 <= nums.length <= 1000
2) 1 <= nums[i] <= 1000
4. Example
Input: nums = [1,3,6,10,12,15] -> Output: 9
Input: nums = [1,2,4,7,10] -> Output: 0
5. Code
1) 첫 코드(2023/05/04)
class Solution {
public int averageValue(int[] nums) {
int sum = 0, n = 0;
for(int i : nums){
if(i%6==0){
sum +=i; n++;
}
}
return n==0 ? n : sum/n;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 2465. Number of Distinct Averages (0) | 2023.05.04 |
---|---|
[LeetCode/Easy] 2460. Apply Operations to an Array (0) | 2023.05.04 |
[LeetCode/Easy] 2446. Determine if Two Events Have Conflict (0) | 2023.05.04 |
[LeetCode/Easy] 2441. Largest Positive Integer That Exists With Its Negative (0) | 2023.05.04 |
[프로그래머스/Lv.0] 배열 조각하기 (0) | 2023.05.03 |