일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- algotithm
- todo
- 취약점
- leetcode
- meterpreter
- 웹해킹
- Algorithm
- Router
- 모의해킹
- study
- metasploit
- 써니나타스
- programmers
- todo List
- 미터프리터
- wpscan
- SQL Injection
- 모드 설정
- hackerrank
- SQLMap
- ToDoList
- CSRF
- 취약점진단
- stock price
- HTML Injection
- StringBuilder
- 라우터
- Suninatas
- 정보시스템
- java
- Today
- Total
목록Development/Algorithm (20)
보안 / 개발 챌린저가 목표
문제 설명 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 ..
문제 설명 You wish to buy video games from the famous online video game store Mist. Usually, all games are sold at the same price, p dollars. However, they are planning to have the seasonal Halloween Sale next month in which you can buy games at a cheaper price. Specifically, the first game you buy during the sale will be sold a p dollars, but every subsequent game you buy will be sold at exactly d ..
문제 설명 프로그래머스 팀에서는 기능 개선 작업을 수행 중입니다. 각 기능은 진도가 100%일 때 서비스에 반영할 수 있습니다. 또, 각 기능의 개발속도는 모두 다르기 때문에 뒤에 있는 기능이 앞에 있는 기능보다 먼저 개발될 수 있고, 이때 뒤에 있는 기능은 앞에 있는 기능이 배포될 때 함께 배포됩니다. 먼저 배포되어야 하는 순서대로 작업의 진도가 적힌 정수 배열 progresses와 각 작업의 개발 속도가 적힌 정수 배열 speeds가 주어질 때 각 배포마다 몇 개의 기능이 배포되는지를 return 하도록 solution 함수를 완성하세요. 제한 사항 작업의 개수(progresses, speeds 배열의 길이)는 100개 이하입니다. 작업 진도는 100 미만의 자연수입니다. 작업 속도는 100 이하의 ..