From 84766d9443f2255fe387b7e61dbc6d102ac2a622 Mon Sep 17 00:00:00 2001 From: Rakshaa Viswanathan <46165429+rakshaa2000@users.noreply.github.com> Date: Tue, 1 Sep 2020 00:22:20 +0530 Subject: [PATCH] Updated changes --- 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 7699abdc7..64b82c1a9 100644 --- a/greedy_algorithms/jumpgame.cpp +++ b/greedy_algorithms/jumpgame.cpp @@ -19,6 +19,6 @@ bool canJump(std::vector nums) { int main(){ //Sample test case std::vector num={4,3,1,0,5}; - cout<