문제주소 programmers.co.kr/learn/courses/30/lessons/17684 코딩테스트 연습 - [3차] 압축 TOBEORNOTTOBEORTOBEORNOT [20, 15, 2, 5, 15, 18, 14, 15, 20, 27, 29, 31, 36, 30, 32, 34] programmers.co.kr 내 풀이 def solution(msg): answer = [] alpha = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" dictionary = {} dictIndex = 1; # 사전 설정하기 for char in alpha: dictionary[char] = dictIndex dictIndex +=1 while True: if len(msg) == 0: return answer..
문제 주소 programmers.co.kr/learn/courses/30/lessons/67257 코딩테스트 연습 - 수식 최대화 IT 벤처 회사를 운영하고 있는 라이언은 매년 사내 해커톤 대회를 개최하여 우승자에게 상금을 지급하고 있습니다. 이번 대회에서는 우승자에게 지급되는 상금을 이전 대회와는 다르게 다음과 programmers.co.kr 내 풀이 from itertools import permutations def solution(expression): answer = 0 operators = ["+","-","*"] expList = [expression[0]] # 숫자부분이랑 연산부분으로 파싱해서 리스트로 만들기 for i in range(1,len(expression)) : if expres..
문제주소 programmers.co.kr/learn/courses/30/lessons/17680 코딩테스트 연습 - [1차] 캐시 3 [Jeju, Pangyo, Seoul, NewYork, LA, Jeju, Pangyo, Seoul, NewYork, LA] 50 3 [Jeju, Pangyo, Seoul, Jeju, Pangyo, Seoul, Jeju, Pangyo, Seoul] 21 2 [Jeju, Pangyo, Seoul, NewYork, LA, SanFrancisco, Seoul, Rome, Paris, Jeju, NewYork, Rome] 60 5 [Jeju, Pangyo, S programmers.co.kr 내 풀이 from collections import deque def solution(ca..
문제 주소 programmers.co.kr/learn/courses/30/lessons/42890 코딩테스트 연습 - 후보키 [["100","ryan","music","2"],["200","apeach","math","2"],["300","tube","computer","3"],["400","con","computer","4"],["500","muzi","music","3"],["600","apeach","music","2"]] 2 programmers.co.kr 내 풀이 from itertools import combinations def solution(relation): answer = 0 columns = [ i for i in range(len(relation[0]))] combi = 1 ans..
- Total
- Today
- Yesterday
- JS
- javascript
- 마스터즈코스
- 학습로그
- OS
- 객체지향
- React
- TIL
- JPA
- 모의면접준비
- Spring
- CS
- 개발공부일지
- 우테코수업
- 회고
- 코드스쿼드
- 우아한테크코스
- 운영체제
- TCP/IP
- java
- Transaction
- 카카오
- python
- 인증
- 내부코드
- 알고리즘
- 글쓰기미션
- 월간회고
- DB
- 네트워크
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |