Esempio n. 1
0
        private static long RunDroneProgram(long[] program, int x, int y)
        {
            long result = 0;

            IntcodeMachine.RunProgram(
                program,
                v => { result = v; },
                x,
                y
                );
            return(result);
        }