일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Scala
- c
- Python
- deep learning
- hacking
- BOF 원정대
- Web
- Shellcode
- mysql
- 러닝 스칼라
- fedora
- BOF
- 리눅스
- Linux
- 백엔드
- hackerschool
- Class
- php
- webhacking
- flask
- c++
- 명령어
- backend
- 파이썬
- HTTP
- 러닝스칼라
- 웹해킹
- hackthissite
- 포인터
- Javascript
- Today
- 22
- Total
- 127,646
목록전체보기 (202)
jam 블로그

문제 Given a string s, find the length of the longest substring without repeating characters. Example 1: Input: s = "abcabcbb" Output: 3 Explanation: The answer is "abc", with the length of 3. Example 2: Input: s = "bbbbb" Output: 1 Explanation: The answer is "b", with the length of 1. Example 3: Input: s = "pwwkew" Output: 3 Explanation: The answer is "wke", with the length of 3. Notice that the ..

문제 You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order, and each of their nodes contains a single digit. Add the two numbers and return the sum as a linked list. You may assume the two numbers do not contain any leading zero, except the number 0 itself. Example 1: Input: l1 = [2,4,3], l2 = [5,6,4] Output: [7,0,8] Explanation: 34..

문제 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. Example 1: Input: nums = [2,7,11,15], target = 9 Output: [0,1] Explanation: Because nums[0] + nums[1] == 9, we return [0, 1]...
이래저래 모아둔 기술 블로그 링크 모듬입니다. 보이거나 링크 변경될 때 수정할 예정입니다. 카카오 http://tech.kakao.com 네이버 http://d2.naver.com VCNC http://engineering.vcnc.co.kr 우아한형제들 기술 블로그 https://woowabros.github.io SK플래닛 http://feeds.feedburner.com Amazon Web Services 한국 블로그 https://aws.amazon.com/ko/blogs/korea/ 스타일쉐어 https://styleshare.github.io Spoqa https://spoqa.github.io 이음소시어스 http://bigmatch.i-um.net 토스랩(잔디) https://tosslab..

HTTP/3 2019년 9월 정도에 새로운 웹 표준인 HTTP/3에 대한 지원을 발표하였습니다. 파트 내에서 웹 로딩 및 접근 속도를 위해서 조사를 하였습니다. HTTP Protocol 발전 과정 요약 HTTP/0.9 HTTP 초기 버전에는 버전 번호가 없지만 추후 버전과 구별을 위해 붙여졌습니다. 특징 GET 메소드만 존재 HTTP 헤더가 존재하지 않음 HTTP/1.0 0.9버전에서 브라우저와 서버 모두 융통성을 가지도록 확장되었습니다. 특징 버전 정보가 각 요청 사이내로 전송되기 시작 (HTTP/1.0 GET ~) HTTP Status code가 라인 또는 시작 부분에 붙어 전송 브라우저의 요청에 대한 성공 실패 여부 확인 및 그에 따른 동작 HTTP 헤더 개념이 요청, 응답 모두에 도입 메타 데이터..