Coding Study
2023. 12. 2.
[## 프로그래머스 coding study ## : 2023.12]
2023년 12월에 푼 프로그래머스 코딩문제 Lv0. 평행(정답률 51%) [[x1,y1], [x2,y2], [x3, y3], [x4,y4]] 주어진 네 개의 점을 두 개씩 이었을 때, 두 직선이 평행이 되는 경우가 있으면 1을 없으면 0을 return 하도록 solution 함수를 완성해보세요. dots result [[1,4], [9,2], [3,8], [11,6]] 1 [[3,5], [4,1], [2,4], [5,10]] 0 def solution(dots): ### 기울기 ### if (dots[0][1]-dots[1][1])/(dots[0][0] -dots[1][0]) == (dots[2][1]-dots[3][1])/(dots[2][0] -dots[3][0]): return 1 elif (dot..