반응형
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 | 31 |
Tags
- sql
- C
- Programming
- jsp
- job
- two pointers
- CSS
- 자바
- 안드로이드
- SpringFramework
- mysql
- Bambino
- coding test
- 데이터베이스
- 웹개발기초
- 밤비노
- html
- MVC
- msa개념
- jvm메모리구조
- MSA
- DB
- microservices
- 코드잇
- servlet
- 리액트프로젝트
- 웹개발
- Java
- BCIT
- 웹개발자
Archives
- Today
- Total
목록3Sum (1)
초보 개발자의 기록
[Two Pointers] 3Sum
3Sum ProblemStatementGiven an integer array nums, find and return all unique triplets [nums[i], nums[j], nums[k]], where the indexes satisfy i≠j, i≠k, and j≠k, and the sum of the elements nums[i] + nums[j] + nums[k] == 0.Constraints3≤ nums.length ≤500−10^3≤ nums[i] ≤10^3Approaches* All numbers in the array are positive, so it is impossible to find any combination of three numbers that addes up t..
Coding Test
2025. 2. 1. 05:26