일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 빅프로젝트
- jupyter notebook
- 에이블데이
- Python
- KT
- KT AIVLE SCHOOL
- YOLO
- AI
- 해외연수
- 부트캠프
- 딥러닝
- 한국외대
- numpy
- Anaconda
- 코딩테스트
- 에이블스쿨6기
- kdt
- 내배카
- Aivle school
- KT wiz
- 내일배움카드
- AIVLE
- kaggle
- AIVEL
- HUFS
- KT에이블스쿨
- 에이블스쿨
- pandas
- sklearn
- keras
- Today
- Total
목록Coding Test (4)
Hyunn
문제링크: https://www.acmicpc.net/problem/1874 1874번: 스택 수열 1부터 n까지에 수에 대해 차례로 [push, push, push, push, pop, pop, push, push, pop, push, push, pop, pop, pop, pop, pop] 연산을 수행하면 수열 [4, 3, 6, 8, 7, 5, 2, 1]을 얻을 수 있다. www.acmicpc.net 차근차근 알고리즘을 연습해보려고 가장 기본적인 스택부터 시작했다. 문제 설명 먼저 간단히 문제 설명을 하자면(처음에 문제 이해를 잘못해서 뭐지? 싶었다,,,) 입력으로 주어진 수열을 스택을 이용해 만드려고 하는데, 스택에는 오름차순으로만 push될 수 있다. 이러한 조건을 이용해서 수열을 만들 수 있으면 ..

문제링크: https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=3&contestProbId=AYo-e9EKmGoDFAQI&categoryId=AYo-e9EKmGoDFAQI&categoryType=CODE&problemTitle=&orderBy=FIRST_REG_DATETIME&selectCodeLang=ALL&select-1=3&pageSize=10&pageIndex=1 SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com GitHub: https://github.com/hyunjin1999/Algorithm_solving/blob/..
문제링크: https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=3&contestProbId=AWczm7QaACgDFAWn&categoryId=AWczm7QaACgDFAWn&categoryType=CODE&problemTitle=&orderBy=SUBMIT_COUNT&selectCodeLang=PYTHON&select-1=3&pageSize=10&pageIndex=2 SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com 문제에서 보면 정류장이 5000개라고 해서 "0으로 초기화한 리스트를 5000개 만들어도 되나?" 라는 생각이 들었다..

문제링크: https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=3&contestProbId=AV134DPqAA8CFAYh&categoryId=AV134DPqAA8CFAYh&categoryType=CODE&problemTitle=&orderBy=FIRST_REG_DATETIME&selectCodeLang=PYTHON&select-1=3&pageSize=10&pageIndex=1&&&&&&&&&& SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com 첫 SWEA풀이라 D3난이도가 어느정도인지 감이 없어 걱정하며 문제를 읽어나갔다. 읽다보..