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
- 취약점진단
- SQLMap
- 라우터
- HTML Injection
- 써니나타스
- 모드 설정
- java
- algotithm
- wpscan
- study
- hackerrank
- Suninatas
- SQL Injection
- StringBuilder
- leetcode
- metasploit
- todo List
- todo
- 정보시스템
- stock price
- Router
- 미터프리터
- ToDoList
- programmers
- 모의해킹
- Algorithm
- meterpreter
- 취약점
- CSRF
- 웹해킹
Archives
- Today
- Total
목록3sum (1)
보안 / 개발 챌린저가 목표
[AlphaGo Study] [LeetCode] [JAVA] 15. 3 Sum
문제 설명 Given an array nums of n integers, are there elements a, b, c in nums such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero. Notice that the solution set must not contain duplicate triplets. 제한 사항 ☞ 0 ≤ nums.length ≤ 3000 ☞ -100000 ≤ nums[i] ≤ 100000 입출력 예 Input Output [-1, 0, 1, 2, -1, -4] [-1, -1, 2] [-1, 0, 1] [ ] [ ] [0] [ ] 입출력 예 설명 #예제1 -1 + 0 + 1..
Development/Algorithm
2020. 10. 17. 21:04