๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.61K subscribers
5.59K photos
3 videos
95 files
10.2K 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
๐ŸšจLatest Job Opening Update๐Ÿšจ

Company โ€“ Urban NXT
Role โ€“ Artificial Intelligence (AI) Intern
Exp. โ€“ Fresher
Apply Here โ€“ https://internshala.com/internship/detail/artificial-intelligence-ai-internship-in-mumbai-at-urban-nxt1709886019?utm_source=cp_link&referral=web_share

Company โ€“ MentorBoxx
Role โ€“ Data Science Intern
Exp. โ€“ Fresher
Apply Here โ€“ https://internshala.com/internship/detail/work-from-home-part-time-data-science-internship-at-mentorboxx1710147261?utm_source=cp_link&referral=web_share

Company โ€“ RETECH Solutions Pvt Ltd
Role โ€“ Machine Learning Engineer
Exp. โ€“ Fresher
Apply Here โ€“ https://www.simplyhired.co.in/job/xTrH3_JEwT67XikP9NIxGM2icXNbLUJCJUg4Ri46ksKYwVljhS9-fQ

Company โ€“ Milestone Online Technology
Role โ€“ Data Analyst
Exp. โ€“ 0-1 yrs
Apply Here โ€“ https://www.naukri.com/job-listings-analyst-data-analyst-business-analyst-milestone-online-technology-pune-maharashtra-ahmedabad-mumbai-all-areas-0-to-1-years-090324006265?src=sortby&sid=17101449629141686_1&xp=14&px=1

Company โ€“ Benovymed Healthcare
Role โ€“ Data Scientist
Exp. โ€“ 0-5 yrs
Apply Here โ€“ https://www.naukri.com/job-listings-principal-data-scientist-senior-data-scientist-data-scientist-nlp-benovymed-healthcare-noida-gurugram-delhi-ncr-0-to-5-years-070324908245?src=jobsearchDesk&sid=17101449629141686_2&xp=13&px=1&nignbevent_src=jobsearchDeskGNB
Associate System Engineer-IBM Consulting

Position: Associate Systems Engineer

Eligibility: Course Completion Year: 2023 - B.E./BTech graduates from CS/ IT/ Mathematics & Computing OR other Semi IT/ circuit branches with a minimum of 60% or 6.0 CGPA.

Registration Process โ€“

Step 1: Note the Candidate Reference Number
Step 2: Go to the below link and complete brazen the registration form.

Note : How to find Candidate Reference

1. Login to your candidate portal, on top right hand side there is a bell icon click on that and go to Messages, which will have a message headed as congratulations!
2. Open that message in the bottom you can find your reference number.
https://krb-sjobs.brassring.com/tgnewui/search/home/home?partnerid=26059&siteid=5016#home

Link โ€“ https://ibm.biz/Bdv3h6
โค1๐Ÿ‘1
Expert Global Solutions Pvt Ltd!!!

We have Good opportunity for Trainee Engineer /Design Engineer

Location: Pune
Qualification - B.Tech / BE Mechanical
Experience: Fresher to 5 Yrs

Job Details:
1. Technical - Welding, GD&T, basic mechanical engineering concepts, engineering materials etc. should be clear.
2. Good communication skills.
3. Autodesk Inventor is preferred 3D modeling software, any other 3D modeling software will be also considered.

Interested Candidates kindly share your updated cv on tanvib@expertgs.com
๐Ÿ‘1
hiring for a Testing Freshers position.

Location: Noida
Work from office opportunity

Requirements -
1. Should have been trained on Manual and Automation Testing.
2. Mandatory - Good communication skills and ability to adapt to changes.
3. Flexible with shifts.

Interested candidate please send me your resume on pooja.katyal@paynways.com
Insemi is hiring DFT Freshers.

Eligibility:
ยท   BE/B.Tech ME/M.Tech
ยท   2022 Passed Out
ยท   70% or above throughout the academics
ยท   Fresher or VLSI Trained freshers can apply

Interested can share CV at sania.perween@insemitech.com
Position -Recruitment intern
Experience -Fresher
Location - Gurgaon-Only
Notice period - immediate
Must have his/ her laptop.

To apply share your resume at shruti.mishra+LinkedIn@cars24.com in below format only.

Subject Line- Gurgaon-HR intern
Current location -(irrespective of your work location)
Applicants who are residing in Delhi NCR shall only apply. I am only looking for immediate joiners.

Please ensure you are sharing the correct details for a quick response.
IndiGo Hiring HR Intern- Talent Aquisition:

Location: Gurgaon- WFO
Duration: 2 Months
Stipend: 10k per month

Required Skills & Qualifications:
ยท      Currently enrolled or recently finished bachelorโ€™s in HR management or a related field.
ยท      Strong desire to learn and contribute to a fast-paced environment.
ยท      Excellent verbal and written communication skills.
ยท      Ability to work with MS Office Suite (MS Word, MS Excel, MS PowerPoint, etc.)

Share your CV- khushi.x.kashyap@goindigo.in
int solve(int n, vector<int>& calls, int th, int pre) {
    int cnt = 0;
    int sum = 0;
    deque<int> dq;

    for (int i = 0; i < n; ++i) {
        sum += calls[i];
        dq.push_back(calls[i]);

        if (i >= pre) {
            sum -= dq.front();
            dq.pop_front();
        }

        if (i >= pre - 1 && sum / (double)(pre) > th) {
            ++cnt;
        }
    }

    return cnt;
}

Threshold Alerts โœ…
โค2