๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.52K subscribers
5.56K photos
3 videos
95 files
9.7K links
๐ŸšฉMain Group - @SuperExams
๐Ÿ“Job Updates - @FresherEarth

๐Ÿ”ฐAuthentic Coding Solutions(with Outputs)
โš ๏ธDaily Job Updates
โš ๏ธHackathon Updates & Solutions

Buy ads: https://telega.io/c/cs_algo
Download Telegram
vector<int> sortBinaryNumbers(vector<vector<int>>bitArrray)
{
  int n = bitArrray.size();
  for (int i = 0; i < n; ++i)
  {
    sort(bitArrray[i].begin(), bitArrray[i].end(), greater<int>());
  }
  int m = bitArrray[0].size();
  vector<pair<vector<int>, int>>temp(n);
  for (int i = 0; i < n; ++i)
  {
    temp[i] = {bitArrray[i], i};
  }
  sort(temp.begin(), temp.end(), greater < pair<vector<int>, int>>());
  vector<int>res;
  for (int i = 0; i < n; ++i)
  {
    res.push_back(temp[i].second);
  }
  return res;

}


Binary Storage โœ…
Zscaler
https://www.linkedin.com/posts/baishakhi-chakraborty-ba6100187_hiring-cis-ltimindtree-activity-7245005655785308162-Suaa?utm_source=share&utm_medium=member_desktop

Please keep in mind "the role is for BCA, BCS, B.Sc. Fresher's"

The openings are for "Cloud Infrastructure domain".

More details:

Designation : Associate Trainee

Compensation : INR 3,19,000 Per Annum

Process : Registration-Screening - Online Assessments โ€“ Communication/Technical Interview - HR Discussion- Offer Rollout-Onboarding

Eligibility Criteria:

2024 Batch of BCA, BCS, B.Sc. (Computer Science, Computer Technology, Information Technology, Information Science, Mathematics, Physics, Chemistry, Electronics, Statistics, & Computer Application)
Consistent academic records of 60% throughout academics

Not more than 2 years academic gap allowed

Open to Indian Nationals Only

Candidates must possess excellent communication skills

Candidates must be willing to work in any LTIMindtree locations, shift timings and any domain

**Note: Please reach me for referal or provide the following:
1.Candidate Full Name
2.Candidate's Primary Email ID for communication
3.Graduate Degree
4.Specialization Or Branch
5.Year of Passout**
#include <iostream>
#include <vector>
#include <unordered_map>
using namespace std;
int throwTheBall(vector<int> receiver, long seconds) {
    unordered_map<int, int> a; 
    int b = 1; 
    int c = 0;
    for (; !a.count(b); seconds--) {
        if (seconds == 0) {  
            return b;       
        }
        a[b] = c;             
        b = receiver[b - 1]; 
        c++;                  
    }
    int d = c - a[b]; 
    seconds %= d;     
    for (; seconds > 0; seconds--) {
        b = receiver[b - 1];
    }

    return b; 
}


Throw the Ball โœ…
int solve(string s) {
        int ans = 0, prev = 0, cur = 1;

        for (int i = 1; i < s.length(); i++) {
            if (s[i] != s[i - 1]) {
           
                ans += min(prev, cur);
                prev = cur;
                cur = 1;   
            } else {
                cur++;
            }
        }
       
        ans += min(prev, cur);

        return ans;
    }

Counting Binary Substrings โœ…
What to do and What to avoid!

When sitting in front of an interviewer, your actions and words can make or break your chances.

Itโ€™s more than just answering questions, it's about presenting yourself as the ideal candidate.

Here are some clear do's and don'ts to keep in mind.

๐Ÿ“ŒDo:

1. Be Prepared.
2. Dress Appropriately.
3. Be Punctual.
4. Maintain Good Posture.
5. Listen Carefully.
6. Ask Thoughtful Questions.
7. Be Honest.

๐Ÿ“ŒDon't:

1. Donโ€™t Fidget.
2. Donโ€™t Speak Negatively About Past Employers.
3. Donโ€™t Interrupt.
4. Donโ€™t Overshare.
5. Donโ€™t Forget to Follow Up.

By keeping these dos and donโ€™ts in mind, youโ€™ll be better prepared to make a strong impression in your interview.

Good luck!