일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 항해플러스
- java
- 리액트
- 알고리즘
- Python
- createSlice
- C++
- json-server
- Get
- redux
- SW
- programmers
- sw expert academy
- maeil-mail
- 항해99
- 테코테코
- react-redux
- 매일메일
- react
- 자바
- react-router
- 이코테
- 코딩테스트합격자되기
- useDispatch
- axios
- redux-saga
- JavaScript
- redux-toolkit
- Algorithm
- 프로그래머스
- Today
- Total
목록SW Expert Academy/level 1 (20)
Binary Journey
출처: 프로그래머스 코딩 테스트 연습, 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)
출처: https://swexpertacademy.com/main/solvingProblem/ for i in range(5): result = '' for j in range(5): if i == j: result += '#' else: result += '+' print(result)
출처: https://swexpertacademy.com/ T = int(input()) print("#" * T)