본문 바로가기
알고리즘 문제/Leetcode

[leetcode][1266] Minimum Time Visiting All Points

by 햄과함께 2019. 12. 7.
320x100

문제 : https://leetcode.com/problems/minimum-time-visiting-all-points/


두 점 사이의 거리 = | x점 사이의 거리 | + | y점 사이의 거리 |

potints를 앞에서부터 탐색하면서 두 점 사이의 거리들의 합을 구하면 정답이 된다.


소스코드 : https://github.com/fpdjsns/Algorithm/blob/master/leetcode/easy/1266.%20Minimum%20Time%20Visiting%20All%20Points.py

 

이제부터는 파이썬으로 풀도록 노력해봐야겠다.

320x100

댓글