From 11e9823558369a7440f17699a608bb6870dcfe88 Mon Sep 17 00:00:00 2001 From: Rakshaa Viswanathan <46165429+rakshaa2000@users.noreply.github.com> Date: Wed, 2 Sep 2020 22:43:02 +0530 Subject: [PATCH] main_func_Update greedy_algorithms/jumpgame.cpp Co-authored-by: David Leal --- greedy_algorithms/jumpgame.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/greedy_algorithms/jumpgame.cpp b/greedy_algorithms/jumpgame.cpp index 2d729786b..6f7a2dd18 100644 --- a/greedy_algorithms/jumpgame.cpp +++ b/greedy_algorithms/jumpgame.cpp @@ -32,6 +32,10 @@ bool canJump(std::vector nums) { return lastPos == 0; } +/** + * @brief Main function + * @returns 0 on exit + */ int main(){ //Sample test case std::vector num={4,3,1,0,5};