From 1ea4520ab169f8835d01e86f7358f85d870e12cd Mon Sep 17 00:00:00 2001 From: Rakshaa Viswanathan <46165429+rakshaa2000@users.noreply.github.com> Date: Mon, 21 Sep 2020 13:03:26 +0530 Subject: [PATCH] documentation update 3 Co-authored-by: David Leal --- greedy_algorithms/jumpgame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/greedy_algorithms/jumpgame.cpp b/greedy_algorithms/jumpgame.cpp index 4a6f5bdcb..2dca593d1 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 [Click here for the problem](https://leetcode.com/problems/jump-game/) + * @brief Implementation of an algorithm to solve the [jumping game](https://leetcode.com/problems/jump-game/) problem * @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.