일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- study
- ToDoList
- metasploit
- java
- programmers
- 미터프리터
- 웹해킹
- 취약점진단
- StringBuilder
- todo
- CSRF
- hackerrank
- Suninatas
- Algorithm
- 정보시스템
- HTML Injection
- stock price
- 취약점
- 모의해킹
- SQL Injection
- 써니나타스
- algotithm
- Router
- wpscan
- todo List
- 라우터
- 모드 설정
- SQLMap
- leetcode
- meterpreter
- Today
- Total
목록Development (22)
보안 / 개발 챌린저가 목표
문제 설명 Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use the same element twice. You can return the answer in any order. 입출력 예 Input Output nums target [2, 7, 11, 15] 9 [0, 1] [3, 2, 4] 6 [1, 2] [3, 3] 6 [0, 1] 입출력 예 설명 #예제1 Because nums[0] + ..
문제 설명 어떤 숫자에서 k개의 수를 제거했을 때 얻을 수 있는 가장 큰 숫자를 구하려 합니다. 문자열 형식으로 숫자 number와 제거할 수의 개수 k가 solution 함수의 매개변수로 주어집니다. number에서 k개의 수를 제거했을 때 만들 수 있는 수 중 가장 큰 숫자를 문자열 형태로 return 하도록 solution 함수를 완성하세요. 제한 사항 number는 1자리 이상, 1,000,000자리 이하인 숫자입니다. k는 1 이상 number의 자릿수 미만인 자연수입니다. 입출력 예 number k return "1924" 2 "94" "1231234" 3 "3234" "4177252841" 4 "775841" 입출력 예 설명 #예제 숫자 1924에서 두 수(k = 2)를 제거하면 [19, 1..
문제 설명 Given an array of integers where 1 ≤ a[i] ≤ n (n = size of array), some elements appear twice and others appear once. Find all the elements of [1, n] inclusive that do not appear in this array. Could you do it without extra space and in O(n) runtime? You may assume the returned list does not count as extra space. 입출력 예 Input Output [4, 3, 2, 7, 8, 2, 3, 1] [5, 6] 입출력 예 설명 #예제 n=8일 때, 위의 In..
문제 설명 Merge two sorted linked lists and return it as a new sorted list. The new list should be made by splicing together the nodes of the first two lists. 입출력 예 Input Output l1 l2 1 → 1→ 2 → 3 → 4 → 4 1 → 2 → 4 1 → 3 →4 입출력 예 설명 # 예제 l1의 node에 1 → 2 → 4가 저장되어 있고, l2의 node에 1 →3 → 4 가 저장되어 있다. 이 노드를 합쳐 나온 결과는 1 → 1 → 2 → 3 → 4 → 4 이다. leetcode.com/problems/merge-two-sorted-lists/ Merge Two Sorted..
문제 설명 Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node. 제한 사항 A leaf is a node with no children. 입출력 예 Binary tree result [3, 9, 20, null, null, 15, 7] 3 입출력 예 설명 #예제 Given binary tree [3, 9, 20, null, null, 15, 7]. Return its depth = 3. leetcode.com/problems/maximum-depth-of-binary-tree..
문제 설명 Bob has a strange counter. At the first second, it displays the number 3. Each second, the number displayed by the counter decrements by 1 until it reaches 1. The couner counts down in cycles. In next second, the timer resets to 2 × the initial number for the prior cycle and continues counting down. The diagram below shows the counter values for each time t in the first three cycles: Find ..