목록2024/10/23 (2)
rubus0304 님의 블로그
[Python] 예제로 익히는 Python - 2회차 [Python] 예제로 익히는 Python - 2회차 | Notion[강의자료 PDF]teamsparta.notion.sitemerge (가장 많이 사용)sql join 과 제일 비슷함공통컬럼 있을 경우 로 이름 추가시켜 바꿔줌 suffixes = ('_left', '_right') 📌 주요옵션 (파라미터 라고도 부릅니다.)on: 조건 컬럼이 한개인지 여러개인지how: 어떤 조인 방식을 사용할 것인지 (inner, outer, left, right)left ot / right on : 열기준 병합 시 기준으로 할 열의 양측 이름이 다르다면, 각각 어떤 열을 기준으로 할 지 지정합니다.sort: 병합 후 인덱스 정렬 여부(True/False)s..
86. Average Time of Process per Machinehttps://leetcode.com/problems/average-time-of-process-per-machine/There is a factory website that has several machines each running the same number of processes. Write a solution to find the average time each machine takes to complete a process.The time to complete a process is the 'end' timestamp minus the 'start' timestamp. The average time is calculated ..