Done Array 2#1875
Conversation
Disappeared Numbers (Problem-1.py)Strengths:
Areas for Improvement:
This is a solid, optimal solution that demonstrates understanding of the in-place marking technique commonly used for this classic problem. VERDICT: PASS max and min (Problem-2.py)The student has submitted a solution for the wrong problem entirely. The "max and min" problem requires finding the minimum and maximum values in an array using fewer than 2*(N-2) comparisons, which the reference solution addresses by comparing elements in pairs. The submitted solution solves the Game of Life problem, which is completely unrelated. Strengths of the submitted solution (Game of Life):
Areas for improvement:
VERDICT: NEEDS_IMPROVEMENT Life GameStrengths:
Areas for Improvement:
Overall, this is a solid implementation that correctly solves the problem with optimal time and space complexity. VERDICT: PASS |
No description provided.