From 072f9cc946271eab3807d59a48a0958ca375458e Mon Sep 17 00:00:00 2001 From: Rakshaa Viswanathan <46165429+rakshaa2000@users.noreply.github.com> Date: Fri, 2 Oct 2020 10:36:10 +0530 Subject: [PATCH] Update greedy_algorithms/jumpgame.cpp Co-authored-by: David Leal --- greedy_algorithms/jumpgame.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/greedy_algorithms/jumpgame.cpp b/greedy_algorithms/jumpgame.cpp index 3bad9138b..681196b7d 100644 --- a/greedy_algorithms/jumpgame.cpp +++ b/greedy_algorithms/jumpgame.cpp @@ -41,6 +41,8 @@ bool canJump(const std::vector &nums) { } return lastPos == 0; } +} // namespace jump_game +} // namespace greedy_algorithms /**