Please consider writing a good code (good algorithm). It is going to be tested for a big triangle of random numbers. Problem statement: By starting from the top of the triangle below and moving to adjacent number on the row below, the maximum total from the top to bottom is 23: That is, 3+7+4+9 23. Write a C function called maxPathTotal which takes two parameters: The depth of the triangle and an array containing the
OR
OR