Implemented Hashmap and Queue using stacks#2454
Implemented Hashmap and Queue using stacks#2454sumanth00100 wants to merge 2 commits intosuper30admin:masterfrom
Conversation
Create Queue using Stacks (implement-queue-using-stacks.java)Your solution is correct and efficient. You have successfully implemented the queue using two stacks with amortized O(1) time complexity for each operation. The code is clean and follows good practices. One minor point: while the problem constraints ensure that Overall, great job! Your solution is on par with the reference solution. VERDICT: PASS Implement Hash Map (design-hashmap.java)Strengths:
Areas for Improvement:
Suggestions:
VERDICT: PASS |
No description provided.