We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
题目要求:使所需的额外空间减小到max(M,N/M),但是你的代码中创建了(N/M - 1)个大小为M的数组,需要的总额外空间为:(N/M - 1) * M 约等于N,某一时刻的额外空间为M,不符合题目要求
The text was updated successfully, but these errors were encountered:
已修复
Sorry, something went wrong.
ikesnowy
No branches or pull requests
题目要求:使所需的额外空间减小到max(M,N/M),但是你的代码中创建了(N/M - 1)个大小为M的数组,需要的总额外空间为:(N/M - 1) * M 约等于N,某一时刻的额外空间为M,不符合题目要求
The text was updated successfully, but these errors were encountered: