Hashing-2 solution - #2199
Hashing-2 solution#2199Simranb10 wants to merge 1 commit into
Conversation
Subarray Sum Equals K (SubArraySum.java)Great job! Your solution correctly implements the optimal prefix sum + HashMap approach for this problem. The logic is sound, and you've handled the edge case of subarrays starting from index 0 by initializing the map with A few minor suggestions to improve code quality:
Overall, this is a solid solution that demonstrates a good understanding of the problem and the optimal approach. VERDICT: PASS Contiguous Array (ContiguousArray.java)Excellent work! Your solution is correct, efficient, and well-implemented. Here are some observations: Strengths:
Minor suggestions for improvement:
Overall, this is a high-quality solution that demonstrates a strong understanding of the problem and the optimal approach. VERDICT: PASS Longest Palindrome (LongestPalindrome.java)E.g., Format: VERDICT: PASS |
No description provided.