Binary Search1#2496
Conversation
Search inside a Rotated Sorted Array (.idea/Binary-Search-1.iml)The student needs to submit actual code that implements the solution to the problem. The current submission appears to be an accidental file upload (an IDE configuration file). To pass this problem, the student should:
The reference solution demonstrates the correct approach using the standard rotated array binary search pattern. VERDICT: NEEDS_IMPROVEMENT Search Inside a Sorted Array whose Length is unknown (.idea/.gitignore)
The student needs to provide actual code solving the problem rather than configuration files. VERDICT: NEEDS_IMPROVEMENT Search a 2D Matrix (.idea/misc.xml)The student needs to submit an actual solution to the problem. The reference solution demonstrates a correct approach using binary search on a flattened 2D matrix (treating the 2D array as a 1D sorted array). Key aspects of a good solution should include:
The student should write and submit a complete Java solution implementing the binary search algorithm for the "Search a 2D Matrix" problem. VERDICT: NEEDS_IMPROVEMENT |
No description provided.