-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
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
Is the GradeScope for non-CMU students is available yet? #111
Comments
@ziyi-yan Try access code: 5VX7JZ |
Thanks, @apavlo! I tried and succeed in entering the course. But I got a weird result for my submission of project 0. It reports that |
The autograder of project 1 works like a charm. Project 0 is not that important. Thanks again, @apavlo! |
@ziyi-yan Your P0 fails the memory check. |
Look at the output. You are failing |
@ziyi-yan , I think the problem is you probably submit github branch instead of just a zip file with only p0_starter.h as required in the following section: (I guess ) The autograder copies some files from you submission to its default code repository and use its own base codes, makefile, format-checking settings to compile the project. What probably goes wrong in your case (also mine:joy:) is that the autograder's clang-tidy setting enables modernize-use-auto(you can search it in your output from test_build) and the codes in b_plus_tree.cpp fail to pass it. This setting is however disabled in your local .clang-tidy file(by a minus prefix, you can check this file in your root directory.). So, just follow the instructions in the project page, you will get another 100, I believe! |
@DiligentPanda , You are right. I have the same problem, and i fix it by uploading the zip file. thanks for the help :) |
This is a great course on databases. Thanks for making all these course materials available in public.
As the project 0 and 1 have passed the due date, I really hope I can test my solution against additional test cases to learn more about these projects.
The text was updated successfully, but these errors were encountered: