#. Problem https://programmers.co.kr/learn/courses/30/lessons/42583* The copyright in this matter is in Programmers 트럭 여러 대가 강을 가로지르는 일 차선 다리를 정해진 순으로 건너려 합니다. 모든 트럭이 다리를 건너려면 최소 몇 초가 걸리는지 알아내야 합니다. 트럭은 1초에 1만큼 움직이며, 다리 길이는 bridge_length이고 다리는 무게 weight까지 견딥니다.※ 트럭이 다리에 완전히 오르지 않은 경우, 이 트럭의 무게는 고려하지 않습니다. 예를 들어, 길이가 2이고 10kg 무게를 견디는 다리가 있습니다. 무게가 [7, 4, 5, 6]kg인 트럭이 순서대로 최단 시간 안에 다리를 건너려면 다음과 같이..
#. Problem https://programmers.co.kr/learn/courses/30/lessons/42588* The copyright in this matter is in Programmers 수평 직선에 탑 N대를 세웠습니다. 모든 탑의 꼭대기에는 신호를 송/수신하는 장치를 설치했습니다. 발사한 신호는 신호를 보낸 탑보다 높은 탑에서만 수신합니다. 또한, 한 번 수신된 신호는 다른 탑으로 송신되지 않습니다. 예를 들어 높이가 6, 9, 5, 7, 4인 다섯 탑이 왼쪽으로 동시에 레이저 신호를 발사합니다. 그러면, 탑은 다음과 같이 신호를 주고받습니다. 높이가 4인 다섯 번째 탑에서 발사한 신호는 높이가 7인 네 번째 탑이 수신하고, 높이가 7인 네 번째 탑의 신호는 높이가 9인 두 번째 ..
#. Problem https://programmers.co.kr/learn/courses/30/lessons/42579* The copyright in this matter is in Programmers 스트리밍 사이트에서 장르 별로 가장 많이 재생된 노래를 두 개씩 모아 베스트 앨범을 출시하려 합니다. 노래는 고유 번호로 구분하며, 노래를 수록하는 기준은 다음과 같습니다. 1. 속한 노래가 많이 재생된 장르를 먼저 수록합니다.2. 장르 내에서 많이 재생된 노래를 먼저 수록합니다.3. 장르 내에서 재생 횟수가 같은 노래 중에서는 고유 번호가 낮은 노래를 먼저 수록합니다. 노래의 장르를 나타내는 문자열 배열 genres와 노래별 재생 횟수를 나타내는 정수 배열 plays가 주어질 때, 베스트 앨범에 들..
#. Problem https://programmers.co.kr/learn/courses/30/lessons/42578* The copyright in this matter is in Programmers 스파이들은 매일 다른 옷을 조합하여 입어 자신을 위장합니다. 예를 들어 스파이가 가진 옷이 아래와 같고 오늘 스파이가 동그란 안경, 긴 코트, 파란색 티셔츠를 입었다면 다음날은 청바지를 추가로 입거나 동그란 안경 대신 검정 선글라스를 착용하거나 해야 합니다. 스파이가 가진 의상들이 담긴 2차원 배열 clothes가 주어질 때 서로 다른 옷의 조합의 수를 return 하도록 solution 함수를 작성해주세요. #. Resolution Process 1. Read and understand proble..
#. Problem https://programmers.co.kr/learn/courses/30/lessons/42577* The copyright in this matter is in Programmers 전화번호부에 적힌 전화번호를 담은 배열 phone_book 이 solution 함수의 매개변수로 주어질 때, 어떤 번호가 다른 번호의 접두어인 경우가 있으면 false를 그렇지 않으면 true를 return 하도록 solution 함수를 작성해주세요. #. Resolution Process 1. Read and understand problem 2. Redefine the problem + abstract - 한 번호가 다른 번호의 접두어인 경우를 확인 3. Create solution plan (s..
1. DataFrame 생성 & data 삽입--123456789import pandas as pd result_df = pd.DataFrame(columns=['col1', 'col2', 'col3'], dtype=str)res_idx = 0 for i in tqdm(range(0,100)): ... result_df.loc[res_idx] = [col1, col2, col3] res_idx += 1Colored by Color Scriptercs
1. DataFrame을 개별 파일로 저장123data1.to_excel('/Users/aaron/Desktop/data1.xlsx', sheet_name='Sheet1', index=False)data2.to_excel('/Users/aaron/Desktop/data2.xlsx', sheet_name='Sheet1', index=False)data3.to_excel('/Users/aaron/Desktop/data3.xlsx', sheet_name='Sheet1', index=False)cs 2. DataFrame을 하나의 엑셀 파일에 여러 시트로 저장12345678910from pandas import ExcelWriter def save_xls(list_dfs, xls_path): writer = E..
1. 특정 시트--123456789import pandas as pd def readExel(xlse_path, sheetName): xls_file = pd.ExcelFile(xlse_path) data = xls_file.parse(sheetName) return data data = readExel('/Users/aaron/Desktop/test/testExcel.xlsx', 'Sheet') Colored by Color Scriptercs 2. 전체 시트--12345678import pandas as pd xls = pd.ExcelFile('/Users/aaron/Desktop/testExcel.xlsx')sheets = xls.sheet_names sh1 = xls.parse(sheet_name..