• Skip to primary navigation
  • Skip to content
  • Skip to primary sidebar
  • Skip to secondary sidebar

GoHired

Interview Questions asked in Google, Microsoft, Amazon

Join WeekEnd Online Batch from 4-April-2020 on How to Crack Coding Interview in Just 10 Weeks : Fees just 20,000 INR

  • Home
  • Best Java Books
  • Algorithm
  • Internship
  • Certificates
  • About Us
  • Contact Us
  • Privacy Policy
  • Array
  • Stack
  • Queue
  • LinkedList
  • DP
  • Strings
  • Tree
  • Mathametical
  • Puzzles
  • Graph

There are N nuts and N bolts, u have to find all the pairs of nuts and bolts in minimum no. of iteration

April 27, 2015 by Dhaval Dave

With First look you think practical way of solving this question, and that is randomly taking a bolt and finding (by Looking at all nuts) perfect fit nut for it.
but does such logic to find approximate fit nut doing hit and try is possible in simple coding practice ?
No , so in order to achieve that what can be simple ways

Method 1) Brute Force Approach

Take a nut and find its pair bolt in all Bolts.
Complexity : O(n^2)

Method 2) Simple and Efficient

Sort all bolts and all nuts based upon diameter ..  All pairs will be automatically formed.
Nuts[i] <-> Bolt[i]. (as same diameter bolt and nut will fit )
But this will be inefficient as question is asked with least comparisons .
here comparisons  will increase (as You are sorting Nuts and Bolts both)
with less sorting complexity also it can be done if you use non-comparison based  methods.

Method 3)  With help of Map.

Algorithm :
1) Create a Map of  <diameter, Address of Bolt>
2) For all N nuts.
check diameter and search in map.
if diameter matches =   declare them both as pair
else print “no bolt for this nut”
3) end

With this simple algo you can find all pairs of nuts and bot in N comparisons only.

Similar Articles

Filed Under: Adobe Interview Questions, Interview Questions, problem Tagged With: Array, Hashmap

Reader Interactions

Primary Sidebar

Join WeekEnd Online/Offline Batch from 4-April-2020 on How to Crack Coding Interview in Just 10 Weeks : Fees just 20,000 INR

Join WeekEnd Online/Offline Batch from 4-April-2020

WhatsApp us

Secondary Sidebar

Custom Search

  • How I cracked AMAZON
  • LeetCode
  • Adobe
  • Amazon
  • Facebook
  • Microsoft
  • Hacker Earth
  • CSE Interview

Top Rated Questions

Inorder and Preorder traversals of a Binary Tree given. Output the Postorder traversal of it.

Check if an array has duplicate numbers in O(n) time and O(1) space

Urban Ladder Written Test.

Find min element in Sorted Rotated Array (Without Duplicates)

Given a string, find the first character which is non-repetitive

Possible sizes of bus to carry n groups of friends

CodeChef’ RRCOPY

Adobe Interview Questions 8 month Exp

Linked List V/S Binary Search Tree

C++ OOPs Part2

Binary Tree Isomorphic to each other

Generate largest number arranging a no. of given non negative integer numbers

Implement a generic binary search algorithm for Integer Double String etc

Maximum path sum between two leaves

Sort an array according to the order defined by another array

Number of Islands BFS/DFS

Find if two rectangles overlap

Find an index i such that Arr [i] = i in array of n distinct integers sorted in ascending order.

Difference between a LinkedList and a Binary Search Tree BST

Memory Efficient LinkedList

Find min element in Sorted Rotated Array (With Duplicates)

Doubly linked list

System Design: Designing a LLD for Hotel Booking

Practo Hiring Experience

Convert Decimal to Roman numbers / Romanizer HackerEarth Code

Handle duplicates in Binary Search Tree

C++ OOPs Part1

‘N’ Story Building, with 1,2,3 steps how many ways can a person reach top of building.

Amazon Interview Experience – SDE Chennai

LeetCode: Container With Most Water

Copyright © 2026 · Genesis Framework · WordPress · Log in