Formatting update 1

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Rakshaa Viswanathan
2020-09-06 09:49:20 +05:30
committed by GitHub
parent 5caf29d246
commit 74eb42066f

View File

@@ -39,7 +39,7 @@ bool canJump(std::vector<int> nums) {
* @returns void
*/
static void test(){
//Test 1
// Test 1
std::vector<int> num1={4,3,1,0,5};
assert(canJump(num1)==true);
std::cout<<"Input: ";