개발일지 (122) 썸네일형 리스트형 TIL 23-05-05 코딩테스트 입문 완료 https://github.com/sdoram/Algorithm https://github.com/sdoram/algorithm_solving_process GitHub - sdoram/algorithm_solving_process: 알고리즘 풀이 과정 python 파일 알고리즘 풀이 과정 python 파일. Contribute to sdoram/algorithm_solving_process development by creating an account on GitHub. github.com 1. 백준 알고리즘 - 단어정렬 문제점 https://www.acmicpc.net/problem/1181 1181번: 단어 정렬 첫째 줄에 단어의 개수 N이 주어진다. (1 ≤ N ≤ 20,000) 둘째 줄부터 N개.. TIL 23-05-04 팀원과의 코드 리뷰 - ad 제거하기 1. 팀원과의 코드 리뷰 - ad 제거하기 문제점 https://school.programmers.co.kr/learn/courses/30/lessons/181870 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 시도해 본 것들 for 문 사용하기 def solution(strArr): answer = [] for s in strArr: if 'ad' not in s: answer.append(s) return answer 문제가 제시한 그대로 for문으로 시도 list comprehension 사용하기 def solution(strArr): return.. TIL 23-05-03 팀원과의 코드 리뷰 - 전국 대회 선발 고사 https://github.com/sdoram/Algorithm https://github.com/sdoram/algorithm_solving_process GitHub - sdoram/algorithm_solving_process: 알고리즘 풀이 과정 python 파일 알고리즘 풀이 과정 python 파일. Contribute to sdoram/algorithm_solving_process development by creating an account on GitHub. github.com 1. 팀원과의 코드 리뷰 - 전국 대회 선발 고사 문제점 https://school.programmers.co.kr/learn/courses/30/lessons/181851 프로그래머스 코드 중심의 개발자 채용. 스.. TIL 23-05-02 페어프로그래밍 - OX 퀴즈 1. 페어프로그래밍 - OX 퀴즈 문제점 https://school.programmers.co.kr/learn/courses/30/lessons/120907 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 시도해 본 것들 네비게이터로 문제 분석 # quiz는 "X [연산자] Y = Z"를 원소로 n만큼 가진 리스트 # return은 X [연산자] Y == Z면 O, else X # 공백으로 구분됨 M: N, M = M, N width = (M-1)//4 - (N-1)//4 length = abs(width*4+N - M) print(width, length.. TIL 23-05-01 팀원과의 코드리뷰 - 한 번만 등장한 문자 1. 팀원과의 코드리뷰 - 한 번만 등장한 문자 문제점 https://school.programmers.co.kr/learn/courses/30/lessons/120896 # 문자열 s # in으로 확인하기 시도해 본 것들 dict 사용해서 문자열 숫자 확인하기 def solution(s): answer = '' s_list = {} for i in s: # s_dict에 없다면 if i not in s_list: s_list[i] = 1 # s_dict에 있다면 elif i in s_list: s_list[i] += 1 # for문의 순서 = key를 기준으로 sort된 s_list로 사용 for i in sorted(s_list.keys()): # value 값이 1이면 if s_list[i] == .. WIL 23-04-30 1. DRF - 개인 프로젝트 한 주 동안 있었던 일 drf 강의를 다 듣지 못해서 촉박하게 요구사항을 간신히 만족함 있었던 일에 대한 생각 알고리즘을 풀겠다고 중심이 될 drf를 소홀히 한거 아닌가 싶은 생각이 든다. 그것으로부터 배운 점 시간 관리를 더 잘하거나 시간 자체를 늘려야한다. 배운 것을 활용할 방법 알고리즘의 난이도를 여유가 되는 주말에 좀 더 어려운 문제를 풀고 평일에는 팀원과 같이 푸는 문제들도 있으므로 난이도를 너무 높이지 말자. 이번주처럼 80시간을 채웠는지 고민할 필요 없도록 집중하자 이번 주 목표 Django 심화 강의 완강 - 3.5/5 진도 나가는 게 굉장히 더뎌서 4주 차 중간정도에서 멈췄다. 다행히 다음 주에 프로젝트를 하는 건 아니라서 밀리기 전에 볼 시간이 아직 있다... TIL 23-04-30 백준 알고리즘 - 수들의 합 https://github.com/sdoram/Algorithm https://github.com/sdoram/algorithm_solving_process GitHub - sdoram/algorithm_solving_process: 알고리즘 풀이 과정 python 파일 알고리즘 풀이 과정 python 파일. Contribute to sdoram/algorithm_solving_process development by creating an account on GitHub. github.com 1. 백준 알고리즘 - 수들의 합 문제점 https://www.acmicpc.net/problem/1789 1789번: 수들의 합 첫째 줄에 자연수 S(1 ≤ S ≤ 4,294,967,295)가 주어진다. www.a.. TIL 23-04-29 백준 알고리즘 - 숫자 카드 https://github.com/sdoram/Algorithm https://github.com/sdoram/algorithm_solving_process GitHub - sdoram/algorithm_solving_process: 알고리즘 풀이 과정 python 파일 알고리즘 풀이 과정 python 파일. Contribute to sdoram/algorithm_solving_process development by creating an account on GitHub. github.com 1. 백준 알고리즘 - 숫자 카드 문제점 https://www.acmicpc.net/problem/10815 10815번: 숫자 카드 첫째 줄에 상근이가 가지고 있는 숫자 카드의 개수 N(1 ≤ N ≤ 500,000.. 이전 1 ··· 5 6 7 8 9 10 11 ··· 16 다음