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
- javascript
- 나쫌
- 밥먹고
- 토이프로젝트
- 발더스3
- 맛집
- 눈알빠지겠네
- 버즈2프로
- 바질토마토뭐시기
- 뜨아거
- 천등
- 발더스모드
- 3d퍼즐
- 게임
- LeetCode
- 하스스톤
- 서울제빵소
- 발더스게이트
- 메일우유
- 알고리즘테스트
- 누룽지소금빵
- 코테
- 메탈퍼즐
- 코딩테스트
- 취미
- DIY
- 잠실새내
- 노노그램
- 송리단
- 미앤아이
Archives
- Today
- Total
목록2022/11/30 (1)
.Zzumbong
[leetCode/JS] 1207. Unique Number of Occurrences
난이도 [ 😊 ] Easy 문제 설명 Given an array of integers arr, return true if the number of occurrences of each value in the array is unique, or false otherwise. int 로 이루어진 arr가 있다. 여기에 나오는 숫자가 발생횟수가 유니크 할때 true이다. 입출력 예 Example 1: Input: arr = [1,2,2,1,1,3] Output: true Explanation: The value 1 has 3 occurrences, 2 has 2 and 3 has 1. No two values have the same number of occurrences. 1은 3번, 2는 2번, 3은 1번 ..
coding test/leetCode
2022. 11. 30. 14:05