일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Codeforces
- 스프링 부트와 AWS로 혼자 구현하는 웹 서비스
- 스코페2021
- 프로그래머스 코딩 테스트 연습
- 프로그래머스 월간 코드 챌린지 시즌1
- pycharm
- Firefox
- 애드센스
- PostgreSQL 설치 시 에러
- 프로그래머스 코딩테스트 연습
- FastAPI
- Python
- c#
- PostgreSQL
- 클린 코드
- github
- 디자인 패턴
- WPF
- terraform
- 브랜디
- github actions
- 파이썬
- git
- Word Cloud
- 프로그래머스 코딩테스트 연습문제
- Spring Boot
- heroku
- 바이오데이터 엔지니어
- 프로그래머스 월간 코드 챌린지
- selenium
- Today
- Total
목록전체 글 (103)
프로그래밍 연습하기
자주 사용하는 단축키와 유용한 팁을 추후 정리해나갈 예정입니다. 다음은 VScode를 시작하는데 도움이 되는 튜토리얼 사이트 입니다. 단축키 또한 잘 정리가 되어있습니다. https://demun.github.io/vscode-tutorial/shortcuts/ 단축키 - Visual Studio Code tutorial 단축키 파일 > 기본 설정 > 바로가기 키 에서 현재 활성화된 키보드 단축키를 볼 수 있습니다 . 기본 편집 키 명령 명령 ID ctrl+X 행 삭제 (빈 선택) editor.action.clipboardCutAction ctrl+C 행 복사 (빈 선택) e demun.github.io Ctrl+Shift+P 모든 명령 표시
Codeforces Round #699 (Div. 2) B. New Colony https://codeforces.com/contest/1481/problem/B Problem - B - Codeforces codeforces.com 문제 전문은 위 링크에서 확인하실 수 있습니다. # https://codeforces.com/contest/1481/problem/B t = int(input()) for _ in range(t): n, k = [int(i) for i in input().split()] arr = [int(i) for i in input().split()] idx = 0 # 하나밖에 없다면 바로 사라진다 if len(arr) == 1: print(-1) else: while True: # ..
Codeforces Round #699 (Div. 2) A. Space Navigation https://codeforces.com/contest/1481/problem/A Problem - A - Codeforces codeforces.com 문제 전문은 위 링크에서 확인하실 수 있습니다. t = int(input()) for _ in range(t): px, py = [int(i) for i in input().split()] s = input() orderDict = {"U": 0, "D": 0, "R": 0, "L": 0} for i in s: orderDict[i] += 1 if 0