From 96882beeaa71e1dae3d9ac81658c669e1e54d8d9 Mon Sep 17 00:00:00 2001 From: Rakshaa Viswanathan <46165429+rakshaa2000@users.noreply.github.com> Date: Sat, 5 Sep 2020 10:26:27 +0530 Subject: [PATCH] test func 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 e74f74d29..b0b015a6a 100644 --- a/greedy_algorithms/jumpgame.cpp +++ b/greedy_algorithms/jumpgame.cpp @@ -39,7 +39,7 @@ bool canJump(std::vector nums) { * @brief Function to test above algorithm * @returns void */ -void test(){ +static void test(){ //Test 1 std::vector num1={4,3,1,0,5}; assert(canJump(num1)==true);