목록TLC - 5 ⛺/Today I Learn (29)
log.Sehee

Team S. A - Git 컨벤션 > commit message convention - Code 컨벤션 Pascal Case RealName, MyVisitorCount - 클래스 Snake Case real_name - 변수, 함수 Kebab Case my-visitor-count - URL 변수명 생성 참고 사이트 : https://www.curioustore.com/#!/ - ERD - API 명세 > TEAM API - 와이어프레임 나만의 작은 꼬북튜터님 TDMI.. To Day Much Information.. 튜터님 피셜.. 주량이 쎄시다고.. 진실 혹은 거짓 :>.,,,,
M1은 언제나 함부로 아무거나 줏어 설치하는게 아니다. 선검색 후설치를 버릇하자.. >>>> 기술매니저님이 추천해주신 Conda M1 세팅 정리글 https://developer.apple.com/metal/tensorflow-plugin/ - numpy conda install -c conda-forge torchvision=0.10.0 - pandas conda install -c conda-forge pytorch=1.9.0 - matplotlib conda install -c conda-forge torchvision=0.10.0 - hypothesis conda install -c conda-forge pytorch=1.9.0 - seaborn conda install -c conda-forge..
문제 https://www.acmicpc.net/problem/10815 상근이가 가지고 있는 숫자카드에 적혀있는 정수와 랜덤으로 주어지는 숫자카드 N개에 적혀있는 정수를 비교하여 N개의 카드 중 상근이가 가지고 있는 카드는 1을, 가지고 있지 않는 카드는 0으로 출력해라. 시도 # 입력값 = 3 # 1 3 5 # 5 # 1 2 3 4 5 h_card = input() h_int_list = list(map(int,(input().split()))) c_card = input() c_int_list = list(map(int,(input().split()))) 이 코드와 입력값은 디폴트로 쓰였다 첫 번째 시도 n = [] for i,h in enumerate(h_int_list): for i_c,c in..

문제 https://school.programmers.co.kr/learn/courses/30/lessons/64061 시도 먼저 복잡해보이는 문제일수록.. 해설처럼 예상도를 그려본 뒤 풀어보는 것이 좋기 때문에 매번 그랬던 것 처럼 입력 예제와 answer값에 맞는 예상도를 그려놨다. # 입력 예제 board = [[0,0,0,0,0],[0,0,1,0,3],[0,2,5,0,1],[4,2,4,4,2],[3,5,1,3,1]] moves = [1,5,3,5,1,2,1,4] # answer = 4 # 예상도 # 4 # >moves> 2 # 0 0 0 0 0 3 < # 0 0 1 0 3 1 < # 0 2 5 0 1 1 < # 4 2 4 4 2 3 < # 3 5 1 3 1 4 처음엔 board의 배열 순서가 잘 ..