diff --git a/greedy_algorithms/jumpgame.cpp b/greedy_algorithms/jumpgame.cpp index 8a8903191..b3f7f8544 100644 --- a/greedy_algorithms/jumpgame.cpp +++ b/greedy_algorithms/jumpgame.cpp @@ -17,7 +17,16 @@ #include #include - +/** + * @namespace greedy_algorithms + * @birief Greedy algorithms + */ +namespace greedy_algorithms { +/** + * @namespace jump_game + * @brief Functions for the [jumping game](https://leetcode.com/problems/jump-game/) problem + */ +namespace jump_game { /** * @brief This function implements the above algorithm * @param array of numbers containing the maximum jump (in steps) from that index