일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 리액트
- 코딩테스트합격자되기
- json-server
- redux-saga
- 프로그래머스
- maeil-mail
- 항해플러스
- 자바
- 항해99
- JavaScript
- 매일메일
- useDispatch
- createSlice
- C++
- react
- programmers
- 테코테코
- react-router
- 알고리즘
- Python
- redux
- Get
- 이코테
- sw expert academy
- SW
- Algorithm
- axios
- react-redux
- redux-toolkit
- java
- Today
- Total
목록분류 전체보기 (302)
Binary Journey
출처: https://swexpertacademy.com/ T = int(input()) for t in range(1, T + 1): str_t = str(t) cnt = 0 answer = "" cnt += str_t.count("3") cnt += str_t.count("6") cnt += str_t.count("9") if cnt > 0: answer = cnt * "-" else: answer = str_t print(answer, end=' ')
출처: 프로그래머스 코딩 테스트 연습, https://programmers.co.kr/learn/challenges import heapq def solution(operations): answer = [] while operations: o, num = operations.pop(0).split() if o == "I": heapq.heappush(answer, int(num)) elif answer and o == "D" and int(num) > 0: answer.pop() elif answer and o == "D" and int(num) < 0: answer.pop(0) answer.sort() if answer: return [answer[-1], answer[0]] else: return [..
출처: 프로그래머스 코딩 테스트 연습, https://programmers.co.kr/learn/challenges import heapq def solution(jobs): answer = 0 end = 0 index = 0 start = -1 hq = [] while len(jobs) > index: for job in jobs: if start < job[0]
출처: https://swexpertacademy.com/ T = int(input()) for i in range(T, -1, -1): print(i, end = ' ')
출처: https://swexpertacademy.com/ T = int(input()) for i in range(T + 1): print(2 ** i, end=' ')
출처: https://swexpertacademy.com/ A, B = map(int, input().split()) if A - B == -2 or A - B == 1: print("A") else: print("B")
출처: https://swexpertacademy.com/ SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com T = int(input()) for i in range(1, T + 1): if T % i == 0: print(i, end=' ')
출처: https://swexpertacademy.com/ a, b = map(int, input().split()) print(a + b) print(a - b) print(a * b) print(a // b)
출처: https://swexpertacademy.com/ T = int(input()) print(T * (T+1) // 2)