[코딩테스트, Python] 프로그래머스 '신규 아이디 추천' 문제 피드백
2022. 6. 24. 11:11
코딩테스트
2022.06.24. 프로그래머스 '신규 아이디 추천' 문제 피드백 1번째 시도: 성공 def solution(new_id): # 1단계 answer = new_id.lower() # 2단계 allowed = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '-', '_', '.'] not_allowed = [] for i in set(answer): if i not in allowed: not_allowed.append(i) for..
[코딩테스트, Python] 프로그래머스 '신고 결과 받기' 문제 피드백
2022. 6. 23. 00:05
코딩테스트
2022.06.22. 프로그래머스 '신고 결과 받기' 문제 피드백 1번째 시도: 시간 초과 def solution(id_list, report, k): id_report = [] for i in id_list: reported = [] for j in report: j = j.split() if i == j[0]: if j[1] not in reported: reported.append(j[1]) id_report.append(reported) report_result = [] for i in id_list: report_num = 0 for j in id_report: for l in j: if i == l: report_num = report_num + 1 report_result.append(rep..
[코딩테스트, Python] 백준알고리즘 6~10단계 문제 피드백
2022. 6. 21. 19:47
코딩테스트
2022.06.21. 백준알고리즘 6~10단계 문제 피드백 (문제 - 단계별로 풀어보기 - 각 단계별 가장 정답 비율이 낮은 문제 풀기) 6단계 문제: 1157번. 단어 공부 A = input() B = {} for i in range(len(A)): X = A[i].upper() if X in B: B[X] = B[X] + 1 else: B[X] = 1 max_str = '' max = 0 for key, val in B.items(): if val > max: max_str = key max = val elif val == max: max_str = '?' print(max_str) 더 간단한 코드 (1) A, B = input().lower(), [] for i in range(97, 123): B..
[코딩테스트 - Python] 백준알고리즘 1~5단계 문제 피드백
2022. 6. 21. 19:40
코딩테스트
2022.06.21 [코딩테스트 - Python] 백준알고리즘 1~5단계 문제 피드백 백준알고리즘 사이트를 통해 코딩테스트를 준비하면서 각 문제에 대한 저의 답안과 그에 대한 피드백을 글로 정리하였습니다. 모든 문제를 하나씩 다 풀어보기에는 문제의 수가 너무 많아서 각 단계별로 가장 정답 비율이 낮은 문제만 풀어보았습니다. 1단계 문제: 1008번. A/B A, B = input().split() print(int(A)/int(B)) A, B = map(int, input().split()) : 더 쉽게 입력받을 수 있음 2단계 문제: 2884번. 알람 시계 H, M = map(int, input().split()) if M >= 45: M = M - 45 print(H, M) else: if H == ..