본문 바로가기

전체 글77

AWS EC2에서 파일 or 폴더 다운로드 or 업로드하는 방법 1scp -i {key path} -r { local path } username@200.200.200.200:{ remote path }cs ex) 커맨드 창을 tutorial-key-pair.pem이 존재하는 폴더에서 띄우고, 1scp -i "tutorial-key-pair.pem" -r D:/Workspace/naver_hackday/naver_hackday_server ec2-user@ec2-13-125-17-27.ap-northeast-2.compute.amazonaws.com:/home/ec2-user/NCH/cs1scp -i {key path} -r ec2-user@54.159.147.19:{ remote path } { local path } cs cf 1) key path: .pem fi.. 2018. 11. 25.
2019 카카오 신입 공채 1차 코딩 테스트 문제 풀이 Python 2019 카카오 신입 공채 1차 코딩 테스트 1번 문제 풀이 Python 버전(현재 1, 2번만 완료). 공부하기에는 박트리님의 코드가 최고지만 다 C++이라 Python 유저로서 참고할 자료를 찾기 힘들었다. Python 자료를 찾고 계신 분들에게 조금이라도 도움이 되시길! https://github.com/ChungminPark/Coding_Test 2018. 11. 23.
백준 11718번 그대로 출력하기 풀이 Python Answer12345import sys for i in sys.stdin: print(i, end="")csDescription다른 사람들은 while True: print(input())또는 for i in range(0, 100): print(input()) 등의 100 줄의 input이 다 들어올 때까지 무제한으로 받아서 런타임 오류가 나기 전에 채점이 끝났기 때문에 통과가 됐던거 같은데 업데이트가 됐는지 나는 저런 방식으로 하면 계속 런타임에러가 떴다. 그래서 다른 방법을 찾아본 결과 sys.stdin을 사용하면 아직 통과할 수 있더라. Source codehttps://github.com/ChungminPark/_problem_solving/blob/master/BOJ/11718.py Refer.. 2018. 11. 23.
백준 10929번 SHA-224 풀이 Python Answer123import hashlib print(hashlib.sha224(input().encode('utf-8')).hexdigest())cs Descriptionhash에는 많은 종류가 있다(SHA1, SHA224, SHA256, SHA384, and SHA512 등). 각 종류마다 generate하는 값이 다른데, 문제에서 sha224를 원하므로 sha224를 사용하기 위해 위에 언급한 hash 함수를 다 포함하고있는 hashlib을 import한다. hashlib.sha224() 와 같은 방식으로 원하는 hash 함수를 불러서 사용한다. 우선 커멘드에서 input을 받아야 되므로 input()을 사용했고 여기서 주의할 점!은 encode를 해주지 않으면 TypeError: Unicode-o.. 2018. 11. 23.
Vuex 튜토리얼 코드 캡틴 판교님의 강좌 코드를 깃헙에 구현해 보았다. https://github.com/ChungminPark/vuex_tutorial Vuex tutorial #1 - props만을 이용하여 vue 앱 만들어보기Vuex tutorial #2 - vuex 적용Vuex tutorial #3 - getter Vuex tutorial #4 - mapGetters Vuex tutorial #5 - mutation Vuex tutorial #6 - mapMutations Vuex tutorial #7 - action for async tasks Vuex tutorial #8 - mapActions Reference https://joshua1988.github.io/web-development/vuejs/vuex-s.. 2018. 11. 22.