C1_w2 linear assignment

am getting all expected outputs but while am submitting my codes am getting below error ‘UNQ_C1’

please help me anyone what should I do
Comment line with index: UNQ_C1 wasn’t found in code

Hi @Siva_satyan ,

Please check the following:

Be careful when modifying the starter code!

  • When working on graded functions, please remember to only modify the code that is between:
#### START CODE HERE

and:

#### END CODE HERE
  • In particular, avoid modifying the first line of graded routines. These start with:
# GRADED FUNCTION: routine_name

The automatic grader (autograder) needs these to locate the function - so even a change in spacing will cause issues with the autograder, returning ‘failed’ if any of these are modified or missing. Now, let’s get started!

Important Note on Submission to the AutoGrader

Before submitting your assignment to the AutoGrader, please make sure you are not doing the following:

  1. You have not added any extra print statement(s) in the assignment.
  2. You have not added any extra code cell(s) in the assignment.
  3. You have not changed any of the function parameters.
  4. You are not using any global variables inside your graded exercises. Unless specifically instructed to do so, please refrain from it and use the local variables instead.
  5. You are not changing the assignment code where it is not required, like creating extra variables.

If you do any of the following, you will get something like, Grader not found (or similarly unexpected) error upon submitting your assignment. Before asking for help/debugging the errors in your assignment, check for these first. If this is the case, and you don’t remember the changes you have made, you can get a fresh copy of the assignment by following these instructions.

1 Like

Thank you so much i did it