바탕화면
-
바탕화면 정리코딩테스트 연습 2023. 7. 24. 16:23
풀이 날짜 : 2023.07.24 월요일 문제 : 바탕화면 정리 문제 출처 : 프로그래머스 깃허브 링크 : https://github.com/ChaerryStorage/Algorithm.git GitHub - ChaerryStorage/Algorithm: 로직 구현 능력 향상을 위한 코딩 연습 로직 구현 능력 향상을 위한 코딩 연습. Contribute to ChaerryStorage/Algorithm development by creating an account on GitHub. github.com def solution(wallpaper): answer = [] minx, miny = len(wallpaper), len(wallpaper) maxx, maxy = 0, 0 for x,l in enum..