Message on Whatsapp 8879355057 for DSA(OA + Interview) + Fullstack Dev Training + 1-1 Personalized Mentoring to get 10+LPA Job
0 like 0 dislike
1,996 views

For proper oa or interview experiences list of all top tech companies visit :

https://oa.desiqna.in

https://interview.desiqna.in

 

in Online Assessments by Expert (46,090 points) | 1,996 views

1 Answer

0 like 0 dislike

Online Assessment Question :

image

image

 

by Expert (46,090 points)
0 0
int minimumGroups(vector<int> awards, int k)
{
 sort(awards.begin(), awards.end());
 int count = 1;
 int flag = 0;
 for (int i = 0; i < awards.size() - 1; i++)
 {
  for (int j = i + 1; j < awards.size(); j++)
  {
   if ((awards[j] - awards[i]) > k)
   {
    count++;
    flag = 1;
    i = j;
   }
   else
   {
    flag = 0;
   }
  }
 }

 return count;
}