| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- terraform
- 브랜디
- 프로그래머스 월간 코드 챌린지
- 파이썬
- 바이오데이터 엔지니어
- Python
- Codeforces
- 클린 코드
- Word Cloud
- 애드센스
- selenium
- github actions
- WPF
- 디자인 패턴
- pycharm
- 프로그래머스 코딩테스트 연습
- Firefox
- 프로그래머스 코딩테스트 연습문제
- 프로그래머스 코딩 테스트 연습
- PostgreSQL
- c#
- FastAPI
- PostgreSQL 설치 시 에러
- Spring Boot
- heroku
- 프로그래머스 월간 코드 챌린지 시즌1
- git
- 스코페2021
- 스프링 부트와 AWS로 혼자 구현하는 웹 서비스
- github
- Today
- Total
목록2021/02 (8)
프로그래밍 연습하기
이번 글을 마지막으로 바이오데이터 엔지니어 후기를 마무리하려고 합니다. 일단은 두번째 글 이후로 꽤 오랜 기간 글이 없었습니다. 그럴 수 밖에 없었던 이유는 중앙 시스템 구축이 계획과 다르게 지연되어서 예정되었던 대로 진행되지 못했기 때문입니다. 정확하게는 모르겠지만 아직도 완벽하게 구축되지는 않은 것으로 알고 있습니다. 그래서 기존 계획과는 다르게 실제 업무는 거의 하지 못하고 계약 기간이 다 되어 마치게 되었습니다. 두번째 글 이후로 진행된 것은 기존 교육 강의와 별개로 KGOL 사이트에서 몇가지 강의를 더 들었습니다. www.kgol.org/main/index.jsp KGOL [K-Genome Online Lectures] 강의안내 및 수강신청에 관한 문의에 친절하게 응답하겠습니다. 평일:09:00..
어떤 레포지토리를 클론해오려고 하는데 이런 에러가 발생했습니다. fatal: unable to checkout working tree warning: Clone succeeded, but checkout failed. https://stackoverflow.com/questions/24898680/fatal-unable-to-checkout-working-tree Fatal: Unable to checkout working tree I am cloning the master branch from a GitHub repo onto my system. It throws this error: Checking connectivity ...done eate file Icon fatal: unable to chec..
자주 사용하는 단축키와 유용한 팁을 추후 정리해나갈 예정입니다. 다음은 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
Codeforces Round #663 (Div. 2) A. Suborrays https://codeforces.com/contest/1391/problem/A Problem - A - Codeforces codeforces.com 문제 전문은 위 링크에서 확인하실 수 있습니다. # https://codeforces.com/contest/1391/problem/A t = int(input()) for _ in range(t): n = int(input()) print(" ".join([str(i) for i in range(1,n+1)])) 문제를 보니까 그냥 오름차순으로 하면 조건을 만족해서 오름차순으로 출력했습니다.
Codeforces Round #578 (Div. 2) A. Hotelier https://codeforces.com/contest/1200/problem/A Problem - A - Codeforces codeforces.com 문제 전문은 위 링크에서 확인하실 수 있습니다. # https://codeforces.com/contest/1200/problem/A def left(room): for idx,val in enumerate(room): if val == "0": room[idx] = "1" break return room def right(room): room = room[::-1] for idx,val in enumerate(room): if val == "0": room[idx] = "1"..
Codeforces Round #479 (Div. 3) A. Wrong Subtraction https://codeforces.com/contest/977/problem/A Problem - A - Codeforces codeforces.com 문제 전문은 위 링크에서 확인하실 수 있습니다. # https://codeforces.com/contest/977/problem/A n,k = [int(i) for i in input().split()] for _ in range(k): if n%10 == 0: n = n//10 else: n = n-1 print(n) n의 끝자리가 0이면 10으로 나눠주고, 아니면 1을 빼주는 것을 k번 반복하는 문제입니다.