I have one piece of code written in Python 3. Inside of it I have this function:
def a_star(matrix, start, goal):
It uses this 2 libraries to work:
import numpy
from heapq import *
And returns an array.
But the program must have a GUI and in Python implementing it is hard and ugly.
I just want to execute that function from other program (using Java or C#) how can I do that?
Thanks