https://programmers.co.kr/learn/courses/30/lessons/62050 코딩테스트 연습 - 지형 이동 solution.cpp 1 #include 2 #include 3 4 using namespace std ; 5 6 int solution ( vector < vector < int >> land , int height ) { 7 int answer = 0 ; 8 return answer ; 9 } 실행 결과 실행 결과가 여기에 표시됩니다. programmers.co.kr import java.lang.Math; import java.util.*; public class Edge implements Comparable { int a,b; int distance; public Edge(int a, int b, int distance){ this.a = a; this.b = b; this.distance = dis...
#
지형이동