Completed Binary Search 1#2503
Conversation
Search inside a Rotated Sorted Array (problem-1.py)
VERDICT: NEEDS_IMPROVEMENT Search Inside a Sorted Array whose Length is unknown (problem-2.py)The implementation for a rotated sorted array is solid - the logic correctly handles both sorted halves and the binary search conditions are properly implemented. However, this solution is for a different problem. For the "Search in Sorted Array of Unknown Length" problem, you need to:
The time complexity is O(log n) which meets the requirement, and space complexity is O(1) which is optimal. The code quality is good with clear comments and readable structure. FEEDBACK: VERDICT: NEEDS_IMPROVEMENT Search a 2D Matrix (problem-3.py)
VERDICT: NEEDS_IMPROVEMENT |
No description provided.