Dunzo 2024 Papers
Previous year papers with coding questions
Practice Dunzo placement paper coding questions with detailed solutions. Access Dunzo OA coding problems in Java, Python, JavaScript.
This page contains Dunzo coding questions from Dunzo OA placement papers with detailed solutions.
Dunzo OA Coding Section:
Solution (Java):
public Map<String, String> assignDeliveries(List<Delivery> deliveries, List<Partner> partners) { Map<String, String> assignments = new HashMap<>(); // Greedy assignment based on proximity for (Delivery delivery : deliveries) { Partner bestPartner = findNearestPartner(delivery.location, partners); assignments.put(delivery.id, bestPartner.id); } return assignments;}Time Complexity: O(n * m)
Dunzo 2024 Papers
Previous year papers with coding questions
Dunzo Main Page
Complete Dunzo placement guide
Practice Dunzo coding questions regularly!