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
- java
- Method
- simulation
- Matrix
- Data Structure
- Number Theory
- Stack
- SQL
- 구현
- string
- Math
- greedy
- geometry
- Class
- Binary Tree
- two pointers
- dynamic programming
- 코딩테스트
- sorting
- implement
- 자바
- Counting
- Binary Search
- 코테
- hash table
- database
- array
- bit manipulation
- 파이썬
- Tree
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 2475. Number of Unequal Triplets in Array 본문
1. Input
1) int[] nums
2. Output
1) nums의 요소 중 다음을 만족하는 순서쌍의 개수를 반환
- 0 <= i < j < k < nums.length
- nums[i] != nums[j], nums[i] != nums[k], nums[j] != nums[k]
3. Constraint
1) 3 <= nums.length <= 100
2) 1 <= nums[i] <= 1000
4. Example
Input: nums = [4,4,2,4,3] -> Output: 3
설명:
- (0, 2, 4): 4 != 2 != 3
- (1, 2, 4): 4 != 2 != 3
- (2, 3, 4): 2 != 4 != 3
5. Code
1) 첫 코드(2023/05/04)
class Solution {
public int unequalTriplets(int[] nums) {
int answer = 0;
for(int i=0 ; i<nums.length-2 ; i++)
for(int j=i+1 ; j<nums.length-1 ; j++){
if(nums[i]!=nums[j]){
for(int k=j+1 ; k<nums.length ; k++)
if(nums[k]!=nums[j] && nums[k]!=nums[i])
answer++;
}
}
return answer;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 2485. Find the Pivot Integer (0) | 2023.05.04 |
---|---|
[LeetCode/Easy] 2481. Minimum Cuts to Divide a Circle (0) | 2023.05.04 |
[LeetCode/Easy] 2469. Convert the Temperature (0) | 2023.05.04 |
[LeetCode/Easy] 2465. Number of Distinct Averages (0) | 2023.05.04 |
[LeetCode/Easy] 2460. Apply Operations to an Array (0) | 2023.05.04 |