일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 취약점진단
- Algorithm
- meterpreter
- algotithm
- SQLMap
- StringBuilder
- todo List
- java
- todo
- programmers
- 라우터
- stock price
- metasploit
- 써니나타스
- wpscan
- 모드 설정
- Router
- 미터프리터
- study
- leetcode
- Suninatas
- SQL Injection
- hackerrank
- ToDoList
- 웹해킹
- 정보시스템
- 모의해킹
- HTML Injection
- CSRF
- 취약점
- Today
- Total
목록StringBuilder (2)
보안 / 개발 챌린저가 목표

문제 설명 Given two non-negative integers num1 and num2 represented as strings, return the product of num1 and num2, also represented as a string. 제한 사항 ☞ The length of both num1 and num2 is < 110. ☞ Both num1 and num2 contain only digits 0-9. ☞ Both num1 and num2 do not contain any leading zero, except the number 0 itself. ☞ You must not use any built-in BigInteger library or convert the inputs to ..

문제 설명 어떤 숫자에서 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..