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
- database
- 자바
- array
- 구현
- simulation
- 코테
- Binary Search
- implement
- Number Theory
- geometry
- Data Structure
- bit manipulation
- two pointers
- Class
- 코딩테스트
- Matrix
- greedy
- 파이썬
- dynamic programming
- Method
- string
- sorting
- Counting
- java
- Tree
- SQL
- hash table
- Math
- Binary Tree
- Stack
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1512. Number of Good Pairs 본문
1. Input
1) 정수 배열 nums
2. Output
1) nums의 요소 중에서 good pair의 개수를 반환
- good pair란 nums[i]==nums[j]이고 i<j인 (i, j)쌍을 말한다.
3. Constraint
1) 1 <= nums.length <= 100
2) 1 <= nums[i] <= 100
4. Example
Input: nums = [1,2,3,1,1,3] -> Output: 4
설명:
- 값이 1로 같은 것: (0,3), (0,4), (3,4)
- 값이 3으로 같은 것: (2,5)
- 따라서 4를 반환한다.
5. Code
1) 첫 코드(2022/06/02)
int count = 0;
for(int i=0 ; i<nums.length-1 ; i++)
for(int j=i+1 ; j<nums.length ; j++)
if(nums[i]==nums[j]) count++;
return count;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1528. Shuffle String (0) | 2022.12.27 |
---|---|
[LeetCode/Easy] 1523. Count Odd Numbers in an Interval Range (0) | 2022.12.27 |
[LeetCode/Easy] 1507. Reformat Date (0) | 2022.12.27 |
[LeetCode/Easy] 1502. Can Make Arithmetic Progression From Sequence (0) | 2022.12.27 |
[LeetCode/Easy] 551. Student Attendance Record I (0) | 2022.12.26 |