전체 글201 시소 짝꿍 - Pyton, https://school.programmers.co.kr/learn/courses/30/lessons/152996# 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr 코드 & 풀이 from collections import Counterdef solution(weights): answer = 0 weights_count = Counter(weights) # 각 무게의 등장 횟수 기록 # 동일한 무게끼리 짝꿍이 되는 경우 for weight, count in weights_count.items(): if count > 1: answer += coun.. 2024. 12. 24. 호텔 대실 - Pyton, 구현, 누적합, 스위핑(Sweeping), 힙(heap) https://school.programmers.co.kr/learn/courses/30/lessons/155651 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr 코드 & 풀이 def solution(book_time): time_changes = [0] * (60 * 24 + 1) # 각 분에서의 시간 변화 기록 for start, end in book_time: checkin_time = 60 * int(start[:2]) + int(start[3:]) checkout_time = 60 * int(end[:2]) + int(end[3:]) + 10 .. 2024. 12. 22. 오픽노잼 09 - Habit(교통, 재활용, 예약) 1. 뭐하는지 설명(주장) 2. 이것이 왜 중요한지(설명) 3,4. 프리스타일 5, 6. 빠른 비교(과거 -> 현재) Transportation 1. No matter what,whenever I need to go somewhere,I always take the subway or bus. 2.This is crucial.(= important)It's quite rare for me to take other options. 3. I love "how"(= what i love about) I can read somethingwhile taking the public transit. 4.It's the only time I can actlually read! 5.It's interesting cos .. 2024. 12. 20. 오픽노잼 08 - Habit, MP -> 과거 -> MP Habit의 MP는 일반적으로는 필요 없음 Decription 질문의 MP :1. 좋은지, 싫은지2. 이유? Habit 질문의 MP :1. 일반적인 메인포인트 *일반적인 메인포인트란? ex)질문 :What do you usally do whenever you go to the bank?당신은 은행에 갈 때 보통 무엇을 하시나요? 답변 :1. No Matter what 활용 예시)No Matter what. Whenever i go to the bank.무조건, 나는 은행에 갈때는I always make sure to bring my airpods.항상 에어팟을 갖고 간다. __ 쳐진 곳은 상황에 맞춰 바꿔 사용No Matter what. Whenever i ~~~I always make sure to ~.. 2024. 12. 20. 124 나라의 숫자 - 구현, 수학(?) https://school.programmers.co.kr/learn/courses/30/lessons/12899# 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr 코드 & 풀이 def solution(n): answer = '' nums = ['1', '2', '4'] while n > 0: n -= 1 # 인덱스를 맞추기 위해 n을 1 감소 answer = nums[n % 3] + answer # 나머지로 현재 자릿수 숫자 구함 n //= 3 # 다음 자리수로 이동 return answer 주석 그대로입니다. nums라는.. 2024. 12. 20. 마법의 엘리베이터 - Python, 구현 https://school.programmers.co.kr/learn/courses/30/lessons/148653 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr 코드 & 풀이 def solution(storey): answer = 0 while storey > 0: remainder = storey % 10 if remainder > 5 or (remainder == 5 and (storey // 10) % 10 >= 5): answer += (10 - remainder) storey += 10 els.. 2024. 12. 18. 이전 1 2 3 4 ··· 34 다음