From 74eb42066fbbccfa94b9430cd7b8c22736ef95e0 Mon Sep 17 00:00:00 2001 From: Rakshaa Viswanathan <46165429+rakshaa2000@users.noreply.github.com> Date: Sun, 6 Sep 2020 09:49:20 +0530 Subject: [PATCH] Formatting update 1 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 785e5b286..9d9d8aec4 100644 --- a/greedy_algorithms/jumpgame.cpp +++ b/greedy_algorithms/jumpgame.cpp @@ -39,7 +39,7 @@ bool canJump(std::vector nums) { * @returns void */ static void test(){ - //Test 1 + // Test 1 std::vector num1={4,3,1,0,5}; assert(canJump(num1)==true); std::cout<<"Input: ";