CT Skills - Algorithmic Thinking (AL)CS Domain - Algorithms and programmingTags - Sequence, Graph, PointersThis problem is about following pointers: We can think of a move like "3R" from column 2 to column 5 as following a pointer. Given this collection of pointers, which is really a directedgraph, we are looking for the "head" or "parent" node of this collection.Following a sequence of pointers is important in memory management by the operating system(or Java garbage collection) so that memory which is no longer being used can be recycled and"reclaimed" for other programs to use. Many software errors can be found by tracing backproblematic calculations/instructions back to their parent origin.The goto statement (or jump statement in assembly language) can be modelled by this game. Agoto statement indicates that instead of executing the "next" instruction, move to some otherpart of the program and continue execution. In this task, the "program" is a sequence of gotoinstructions, where the only "terminating" instruction is the one at position 4.