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
- 십진수 이진수 전환
- http
- TCP/IP
- 프로그래머스
- 코딩테스트
- 문자열 내마음대로 정렬하기
- 문자열
- port
- 가장 가까운 단어
- green thread
- stack
- URL
- java
- springMVC
- 2차원 배열 출력
- frontPattern
- 동시성문제
- reflection
- DICTIONARY
- dns
- CPU
- 크기가 작은 부분 문자열
- process
- annotation
- Split
- Spring
- CPU bound
- Queue
- IO bound
- deque
Archives
- Today
- Total
목록카카오 코테 (1)
아무나개발하자
[1차] 비밀지도
문제 https://school.programmers.co.kr/learn/courses/30/lessons/17681 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 풀이 def getBinaryNum(n, num): lists = [] while True: remainder = num % 2 num = num // 2 lists.append(remainder) if num < 2: lists.append(num) break if len(lists) < n: add = n - len(lists) for i in range(add): lists.append..
코딩테스트
2023. 1. 11. 14:43