[codewars/3kyu] 수 많은 점 중 최소 거리 조합 구하기(Merge Sort, Divide and Conquer를 통한 속도 최적화(병합정렬 알고리즘))
함께 풀어보아요~ Codewars - Achieve mastery through coding practice and developer mentorshipA coding practice website for all programming levels – Join a community of over 3 million developers and improve your coding skills in over 55 programming languages!www.codewars.com가장 가까운 거리를 가지는 두 점을 구해주세요!이번 문제는 지문은 짧아서 좋습니다. 제목 그대로가 요구사항입니다! ( (2,2), # A (2,8), # B (5,5), # C (6,3), # D (6,7), # E (7,4)..
2024. 4. 30.
[Python/pandas] 두 데이터 프레임이 동일한지 확인하기 (identify two datafame is equivalent)
from pandas.testing import assert_frame_equal assert_frame_equal(df_a, df_b) 옵션도 유연하게 적용할 수 있다. check_dtype=True, check_index_type='equiv', check_column_type='equiv', check_frame_type=True, check_names=True, by_blocks=False, check_exact=False, check_datetimelike_compat=False, check_categorical=True, check_like=False, check_freq=True, check_flags=True 참고자료 pandas.testing.assert_frame_equal — pand..
2023. 7. 14.