Update greedy_algorithms/jumpgame.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Rakshaa Viswanathan
2020-10-02 10:36:10 +05:30
committed by GitHub
parent f308a5f6c2
commit 072f9cc946

View File

@@ -41,6 +41,8 @@ bool canJump(const std::vector<int> &nums) {
}
return lastPos == 0;
}
} // namespace jump_game
} // namespace greedy_algorithms
/**