diff --git a/greedy_algorithms/jumpgame.cpp b/greedy_algorithms/jumpgame.cpp index 6a2e75840..4a6f5bdcb 100644 --- a/greedy_algorithms/jumpgame.cpp +++ b/greedy_algorithms/jumpgame.cpp @@ -1,6 +1,6 @@ /** * @file - * @brief Implementation of an algorithm to solve the jumping game problem + * @brief Implementation of an algorithm to solve the jumping game problem [Click here for the problem](https://leetcode.com/problems/jump-game/) * @details * **Problem statement:** 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. Determine if you are able to reach the last index. * This solution takes in input as a vector and output as a boolean to check if you can reach the last position.