Exemplo n.º 1
0
def main():
    print("Witaj w algorytmie przeliczania najkrótszej ścieżki!")
    points = ask_for_points()
    starting_point_number = ask_for_starting_point()
    algorithm = Algorithm(points, starting_point_number)
    algorithm.calculate_shortest_path()