Given an array of non-negative integers, you are initially positioned at the first index of the array.
Each element in the array represents your maximum jump length at that position.
Your goal is to reach the last index in the minimum number of jumps.
For example:
Given array A =
The minimum number of jumps to reach the last index is 2. (Jump 1 step from index 0 to 1, then 3 steps to the last index.)

Note:
You can assume that you can always reach the last index.

int max(int a,int b)
{
    return (a > b) ? a:b;
}

int jump(int* nums, int numsSize) 
{
    int step = 0;
    int last = 0;
    int current = 0;
    for(int i = 0; i < numsSize - 1; i++) 
    {
        current = max(current, i + nums[i]);
        if( i == last) 
        {
            step++;
            last = current;
        } 
    }
    
    return step;
    
}