Update Complete_Search.mdx

This commit is contained in:
Darren Yao 2020-06-28 21:36:53 -07:00 committed by GitHub
parent c83f150a73
commit b4fc1f73ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -134,6 +134,7 @@ static void generate(int[] arr, int k){
swap(arr, 0, k-1);
// swap indices 0 and k-1 of arr
}
generate(arr, k-1);
}
}
}