๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€ @cs_algo Channel on Telegram

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

@cs_algo


๐Ÿšฉ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

CS Algo - Competitive Programming (English)

Are you passionate about coding and competing in programming challenges? Look no further than CS Algo - Competitive Programming Telegram channel! This channel is your one-stop destination for comprehensive programming solutions with outputs that are authentic and reliable. Stay updated with daily job opportunities and get notified about upcoming hackathons along with their solutions. Join a community of like-minded individuals who are dedicated to mastering the art of competitive programming. Don't miss out on this valuable resource to enhance your coding skills and stay ahead in the competitive programming world. Join CS Algo today and take your programming skills to the next level! To connect with us, visit the Main Group at @SuperExams and get job updates from @FresherEarth. Buy ads for promotions at https://telega.io/c/cs_algo

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

19 Feb, 15:11


https://www.linkedin.com/posts/gauraaga_hiring-alert-amazon-payments-team-is-looking-activity-7297314314699345920-9p0_?utm_source=share&utm_medium=member_desktop&rcm=ACoAACO5x5cB0g7BYPjqQ37VYwVzvS5bEORrWOs

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

19 Feb, 15:10


https://www.linkedin.com/posts/prisha-srivastava-b35a38107_npci-bhim-technicalhiring-activity-7297201795217424384-x0zm/?utm_source=share&utm_medium=member_desktop&rcm=ACoAACUkNRQBgXo7twt9KPJefTN46TfAssCobhg

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

19 Feb, 15:08


https://docs.google.com/forms/d/e/1FAIpQLScmOWrJI1wKIWmN77dvNiSdFcGcsZI1UNGdZH4fA7twaDXi_A/viewform

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

19 Feb, 15:03


#include <bits/stdc++.h>


using namespace std;

int main() {
    int T;
    cin >> T;
    while (T--) {
        int N;
        cin >> N;
        vector<long long> A(N);
        for (int i = 0; i < N; ++i) {
            cin >> A[i];
        }
        sort(A.begin(), A.end());
        long long sum = 0;
        int pairs = N / 2;
        for (int i = 0; i < pairs; ++i) {
            sum += A[N - 1 - i] - A[i];
        }
        cout << sum << endl;
    }
    return 0;
}

Maximum score
Google โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

19 Feb, 15:00


Navi is hiring UI Engineer

For 2021, 2022, 2023, 2024 grads
Location: Bangalore

https://www.linkedin.com/posts/krmukesh_ui-engineer-job-application-form-activity-7297520724057956353-KPeC?utm_source=share&utm_medium=member_android&rcm=ACoAADcYLRgBJmsLNWvacCtmAInFWe0W5S4QEzg

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

19 Feb, 14:54


๐Ÿ“ŒOneOrigin is hiring for Junior Software Engineer
Experience: 0 - 1 years
Expected Salary: 4-9 LPA
Apply here:
https://www.linkedin.com/jobs/view/4156972768

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

19 Feb, 14:50


Friday Tech Labs Product Design Intern

For 2022, 2023, 2024, 2025, 2026 gards
Location: Jaipur

https://www.linkedin.com/jobs/view/4156891765

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

19 Feb, 14:50


RoboMQ is hiring Software Engineer

For 2021, 2022, 2023 gards
Location: Jaipur

https://www.linkedin.com/jobs/view/4155864023

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

19 Feb, 14:47


๐Ÿ“ŒZ1 Tech is hiring for Junior Frontend Developer
Experience: 0 - 1 years
Expected Salary: 4-6 LPA
Apply here:
https://jobs.lever.co/z1tech/74865c26-7b56-447e-a674-52957d609395/

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

19 Feb, 14:45


https://www.linkedin.com/posts/sourabhmishra1262_hiring2025-students-internships-activity-7297113522784624640-pqPC?utm_source=share&utm_medium=member_android&rcm=ACoAADQNF4sByAH12_xEEMVX4_tim7sPfw4Qhkg

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

19 Feb, 14:45


๐Ÿ“ŒTisac is hiring for Frontend Developer Intern
Stipend: Paid Internship
Duration: 3โ€“6 months
Apply here:
https://www.linkedin.com/jobs/view/4156147823/?alternateChannel=search

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

19 Feb, 14:43


Company Name: Microsoft
Role: Data Science Internship
Batch : 2027 passouts

Link : https://jobs.careers.microsoft.com/us/en/job/1808941/Data-Science-Internship-Opportunities-Second-Year-Students

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

19 Feb, 14:42


๐Ÿ“ŒSwiss Re is hiring Freshers!
Position: Apprentice

Experience: Freshers
Location: Bangalore, India

๐Ÿ’ปApply Link: https://careers.swissre.com/job/Bangalore-Apprentice-KA/1162041901/

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

19 Feb, 14:42


Cousera Hiring!!
Role - ML Engineer
Exp - 3 year btech , 1 year mtech

https://job-boards.greenhouse.io/coursera/jobs/5439503004?gh_src=6d6e4f994us

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

19 Feb, 14:42


Atmos Climate Hiring
Role - AI Intern

https://www.linkedin.com/jobs/view/4154835193

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

19 Feb, 14:38


import java.util.Scanner;

public class FindMinX {
    public static int findMinX(int A, int B, int C) {
        int value = A & B;
        if ((value & ~C) != 0) {
            return -1;
        } else {
            return C ^ value;
        }
    }

    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int T = scanner.nextInt();
       
        while (T-- > 0) {
            int A = scanner.nextInt();
            int B = scanner.nextInt();
            int C = scanner.nextInt();
            System.out.println(findMinX(A, B, C));
        }
       
        scanner.close();
    }
}
Find X
google โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

19 Feb, 14:36


https://www.hackerearth.com/challenges/new/competitive/texas-instruments-wise-hackathon/
Register by February 28, 2025, 06:00 PM!


Open to female students only

โ€ข Students pursuing an Engineering degree in Electrical, Electronics, Computer Science or related fields:

          โ€ข *2nd & 3rd Year Bachelor's*
          โ€ข 1st Year Master's

โ€ข Minimum CGPA of 7.0 on 10.0

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

19 Feb, 14:34


Company Name : Sage
Batch : 2025 passouts
Role : Graduate Software Engineer

Link : https://sagehr.my.salesforce-sites.com/careers/fRecruit__ApplyJob?vacancyNo=VN31052&source=LinkedIn

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

18 Feb, 18:48


Pi is a new digital currency developed by Stanford PhDs, with over 55 million members worldwide. To claim your Pi, follow this link https://minepi.com/sankitgamer and use my username (sankitgamer) as your invitation code.

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

17 Feb, 11:24


Uber Referral Program
https://docs.google.com/forms/d/e/1FAIpQLSf_3tDJ15Gt-LOmL0MyK10mg7vUbKz0iNLN3J9NXbpbnxCsUg/viewform

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

17 Feb, 11:20


https://jobs.volvogroup.com/job/Bangalore-Graduate-Apprentice-Trainee-RPA-562122/1147185255/?feedId=361555&utm_source=linkedin

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

17 Feb, 11:20


https://jobs.volvogroup.com/job/Bangalore-Graduate-Apprentice-Trainee-562122/1147188455/?feedId=361555&utm_source=linkedin

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

17 Feb, 11:13


Everyone has a different start, stop comparing and keep working. โ™ฅ๏ธ

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

15 Feb, 16:14


https://www.linkedin.com/posts/venkat-y-60ba6915a_mtouchlabs-aijobs-mljobs-activity-7295650862616453120-iFqz

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

15 Feb, 16:13


https://www.linkedin.com/posts/michelle-tradle_internship-qa-orahi-activity-7295730785754431492-aICo

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

15 Feb, 16:12


https://www.linkedin.com/posts/ajaykurlekar_fresher-hiring-clover-infotech-mumbai-activity-7295741550502768642-2mEr

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

15 Feb, 16:10


https://www.linkedin.com/posts/shruti-nage-lonagre-b42a10210_dear-candidates-we-are-hiring-for-business-activity-7295703811396972546-nELt

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

15 Feb, 16:08


https://www.linkedin.com/posts/shivani-dhotre-983ab4136_hiring-embeddedsystems-python-activity-7294396544441585664-hi6d

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

15 Feb, 16:06


https://forms.office.com/pages/responsepage.aspx?id=0o3Z5JmR5UK6i9o-dj7eLhU0AM2JEfRAhyoWiBluxytUQ0Q5NzlCWTdFRjNGMVVDVkExWUI4UE8zMC4u&route=shorturl

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

15 Feb, 16:04


https://surveys.infosysapps.com/r/a/Campusregistration_APITATASK2025batch

Batch 2025

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

15 Feb, 15:59


๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€ pinned ยซ๐Ÿ“ŒAsymmetric is hiring for Full Stack Developer & Mobile Developer- Remote Batch: 2022, 2023, 2024, 2025 CTC : 7 - 12 LPA Full Stack Developer: https://lnkd.in/gnHEmEeA Mobile Developer: https://lnkd.in/gwbBjxRWยป

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

15 Feb, 15:59


๐Ÿ“ŒAsymmetric is hiring for Full Stack Developer & Mobile Developer- Remote
Batch: 2022, 2023, 2024, 2025
CTC : 7 - 12 LPA
Full Stack Developer:
https://lnkd.in/gnHEmEeA
Mobile Developer:
https://lnkd.in/gwbBjxRW

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

15 Feb, 15:39


๐Ÿ“ŒZingbus is hiring for Associate Software Development Engineer (0-2 years)
Experience: 0-1 years
Expected Salary: 6-10 LPA
Apply here:
https://www.hirist.tech/j/zingbus-associate-software-development-engineer-react-native-1435078.html

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

15 Feb, 15:38


๐Ÿ“ŒMatrice.ai is hiring for Frontend Developer Intern
Experience: 0- 1 years
Salary: competitive
Apply here:
https://www.linkedin.com/jobs/view/4152667120/?alternateChannel=search

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

15 Feb, 15:37


๐Ÿ“ŒCirclePe is hiring for SDE
Apply here:
https://docs.google.com/forms/d/e/1FAIpQLSeCIwyPy368I_fzOcOGV27rGTNu_Q5ks2osJ9Fd-6MZrSMjIA/viewform

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

15 Feb, 15:35


๐Ÿ“ŒSeagate is hiring for the role of Intern
Expected Stipend: 30k-40k per month
Apply here:
https://seagatecareers.com/job/Pune-Intern-Firmware/1262355600/?feedId=326100&source=APPLICANT_SOURCE-3-387

๐Ÿ“ŒCommerceIQ is hiring for SDE- Intern
Expected Salary: โ‚น1L โ€“ โ‚น1L
Apply here:
https://wellfound.com/jobs/3209488-sde-intern-backend-developer-java-6-months-12-months

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

15 Feb, 15:33


๐Ÿ“ŒCerence ai is hiring for Software Engineering Intern
Apply here:
https://cerence.wd5.myworkdayjobs.com/Cerence/job/Hinjewadi-Pune/Software-Engineering-Intern---Speech-Output-Tools_R0005536?source=LinkedIn

๐Ÿ“ŒNaptha AI is hiring for Software Engineer (Intern)
Apply here:
https://naptha.ai/careers?ashby_jid=96df9dd3-85bc-4cff-b806-973b78bb433a

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

15 Feb, 15:31


Chrysalis is hiring for Software Engineer
Experience: 0-1 years
Expected Salary: 5-12 LPA
Apply here: https://job-boards.greenhouse.io/chrysalis/jobs/4529935005?gh_src=47e348e95us

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

12 Feb, 16:27


๐Ÿ“ŒTimepay.ai is hiring for Frontend Developer Intern
Experience: 0-1 years
Stipend: 15k-25k per month
Apply here:
https://wellfound.com/jobs/3089009-frontend-developer-intern

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

12 Feb, 15:21


Newton school hiring Analyst Interns

Apply Link : https://docs.google.com/forms/d/e/1FAIpQLSc5QcpGhkfR-OBQLPa8dbgIPrkcLlkt8Ekh-Y0mUiV7-B3f1A/viewform

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

12 Feb, 15:19


๐Ÿ“ŒSkild AI is hiring for Full Stack Developer
Experience: 0 - 1 year

๐Ÿ’ปApply Link: https://job-boards.greenhouse.io/skildai-careers/jobs/4483871008

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

12 Feb, 15:11


๐Ÿ“ŒBUSINESSNEXT is hiring for Software Developer Trainee (2025, 2024) & Software Developer - Experienced
Experience: Fresher 2025, 2024 & Experienced 6 months to 3 years
CTC: 4-8 LPA
Software Developer Trainee (Fresher):
https://lnkd.in/gMUMgb4i
Software Developer (Experienced):
https://lnkd.in/gGy8VWBZ

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

12 Feb, 15:08


๐Ÿ“ŒCompany Name: Expleo
Role: Fresher - Python with SQL

Experience: 0 - 1 years

๐Ÿ’ปApply Link: https://expleo-jobs-in-en.icims.com/jobs/41677/fresher---python-with-sql/job

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

12 Feb, 15:06


Graviton Research Capital LLP is hiring Quant Analysts role with 0-2 years of experience. Location - Gurgaon

Join us to:
- Collaborate with senior traders to enhance trading strategies
- Analyze trades for optimization and performance enhancement
- Create monitoring tools and scalable post-trade systems using C++ and Python

Seeking individuals with:
- 0-2 years experience in quantitative/technical roles
- A degree in Engineering, Mathematics, or Computer Science from a prestigious university
- Strong problem-solving abilities and proficiency in C++ and Python

If you're ready for a dynamic trading environment, apply now or refer a friend.
Reach out to Sukanya Pant on [email protected]

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

12 Feb, 15:06


๐Ÿ“ŒCompany Name: Coforge
Role: Graduate Engineer Traniee

Experience: Fresher

๐Ÿ’ปApply Link: https://careers.coforge.com/coforge/jobview/graduate-engineer-trainee-noida-2024010804101558

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

12 Feb, 15:03


๐Ÿ“ŒDatavail is hiring for Junior Developer (0-2 years)

Salary: 5-10 LPA

๐Ÿ’ปApply Link: https://eifn.fa.us6.oraclecloud.com/hcmUI/CandidateExperience/en/sites/ExternalCareerSite/job/1137

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

12 Feb, 15:01


Licious Hiring

https://www.linkedin.com/posts/gursimran-singh-35b80a196_licious-techcareers-engineeringjobs-activity-7295001241921691650-N04W?utm_source=share&utm_medium=member_android

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

12 Feb, 14:56


Company Name : BNY Mellon
Challenge : Code Divas
Role : Software Engineer Intern/Full Time
CTC : ~20-25LPA

Batches: 2026/27/28 passouts females

Link : https://assessment.hackerearth.com/challenges/new/hiring/bny-mellon-code-divas-diversity-challenge-2025/

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

11 Feb, 15:28


GotoEcom is hiring for React Native Developer
Experience: 0-1 year
Stipend: 20K-30K per month
Apply here:
https://wellfound.com/jobs/3215086-react-native-developer

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

11 Feb, 15:26


Treebo Hospitality Ventures is hiring for Backend Engineer
Experience: 0-2 years
Expected Salary: 6-16 LPA
Apply here:
https://docs.google.com/forms/d/e/1FAIpQLSeGWK3CC-m2NFac12qWUqGrtO1uHfZFAZ23QdNc_plubPAt5g/viewform

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

11 Feb, 15:20


๐Ÿ“ŒCompany Name: Infosys
Role: System Engineer

Experience: 0 - 2 years
Location: Ahmedabad

๐Ÿ’ปApply Link: https://career.infosys.com/jobdesc?jobReferenceCode=INFSYS-NAUKRI-201855&sourceId=4001

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

11 Feb, 15:20


๐Ÿ“ŒCompany Name: Optum
Role: Associate Software Engineer

Location: Gurgaon
Experience: Freshers

๐Ÿ’ปApply Link: https://careers.unitedhealthgroup.com/job/21513851/associate-software-engineer-ii-gurgaon-in/

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

11 Feb, 15:19


๐Ÿ“ŒCompany Name: CGI
Role: Testing

Experience: Fresher

๐Ÿ’ปApply Link: https://cgi.njoyn.com/corp/xweb/xweb.asp?clid=21001&page=jobdetails&jobid=J0125-1722&BRID=1191634&SBDID=943

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

11 Feb, 15:19


๐Ÿ“ŒCompany Name: CGI
Role: Associate System Engineer

Experience: Fresher

๐Ÿ’ปApply Link: https://cgi.njoyn.com/corp/xweb/xweb.asp?CLID=21001&page=jobdetails&JobID=J1224-0302&lang=1

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

11 Feb, 15:19


๐Ÿ“ŒCompany Name: ARES
Role: Traniee

Batch: 2024
MCA or Bachelorโ€™s degree in Engineering (CSC, IT, ECE)

Location: Mumbai

๐Ÿ’ปApply Link: https://aresmgmt.wd1.myworkdayjobs.com/en-US/External/job/Mumbai-India/Trainee---Technology_R6058

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

11 Feb, 15:18


Swissmote is Hiring Full Stack Developer Interns (Remote) Potential PPO for outstanding candidates!

Apply now : https://lnkd.in/gUNG9RYp

Share your resumes at [email protected]

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

11 Feb, 15:18


๐Ÿ“ŒCompany Name:
Role: Java/Python Developer

Eligibility: Bachelor Degree or Higher{Preferred Computer science degrees}

๐Ÿ’ปApply Link: https://jobs.ewallsolutions.com/jobs/detail/junior-programmer-fresher-python-java-26

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

11 Feb, 15:18


๐Ÿ“ŒCompany Name: UST
Role: Full Stack Developer

Experience: 0 - 2 years

๐Ÿ’ปApply Link: https://usource.ripplehire.com/candidate/?token=BI4Ymwpaz4kx4eyJppxC&lang=en&ref=LI01#detail

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

08 Feb, 12:57


Better Software is hiring for Software Engineer
Experience: 0-1 year
Salary: 5-6 LPA
Apply here:
https://wellfound.com/jobs/3196182-software-engineer-developer-tools-and-open-source

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

08 Feb, 12:56


๐Ÿ“ŒZocket is hiring for these roles
Batch: 2025 & 2026 passouts

Frontend Intern:
https://zocket.keka.com/careers/jobdetails/76933

Backend Intern:
https://zocket.keka.com/careers/jobdetails/76932

Tech Intern:
https://zocket.keka.com/careers/jobdetails/74375

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

08 Feb, 12:55


Company Name: Microsoft

Role: Software Engineer Intern
Eligibility: Second year students

Apply: https://jobs.careers.microsoft.com/global/en/job/1800043/Explore-Program-Internship-Opportunities%3A-Second-Year-Students%2C-India

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

08 Feb, 12:55


Company : Hypersonix Inc
Role: Data Scientist Intern
Exp: Fresher
Apply now - https://www.linkedin.com/jobs/view/4145413163

Company : Stader Labs
Role: Analytics Intern
Exp:  Fresher
Apply now - https://www.linkedin.com/jobs/view/4135618957

Company : Antarctica Global
Role: Data Analyst
Exp:  Fresher
Apply now - https://www.linkedin.com/jobs/view/3994521694

Company : VMock
Role: Launch Analyst
Exp: Fresher
Apply now - https://www.linkedin.com/jobs/view/4137292369

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

08 Feb, 12:55


Data Axle is hiring for Intern
Experience: 0 - 1 year's
Expected Stipend: 3-6 LPA
Apply here:
https://myjobs.adp.com/dataaxleindia/cx/job-details?__tx_annotation=false&rb=INDEED&reqId=5001100111100

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

08 Feb, 07:01


Company Name : Cisco
Role : Software Engineer
Batches: 2025/24/23 passouts

Link : https://jobs.cisco.com/jobs/ProjectDetail/Software-Engineer-New-Grad-0-3-Years/1434562

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

07 Feb, 07:49


https://www.linkedin.com/posts/sharath-patil_internship-hiring-frontenddevelopment-activity-7293190757123858432-Jm39?utm_source=share&utm_medium=member_android

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

07 Feb, 07:46


MKS is hiring for Undergrad Summer Intern
Batch: 2025
Apply here:
https://mksinst.wd1.myworkdayjobs.com/MKSCareersEMEA/job/India-Gurgaon/Undergrad-Summer-Intern-2025_R12143

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

07 Feb, 07:31


Company Name : Analog Devices
Role : 1 Year SDE Internship - Masters students 2026 passouts

Apply to [email protected] with subject as Graduating year/Masters Specialization/CGPA/Location

Key skills:
Strong C and Python programming skills.
Very strong in the fundamentals of Embedded systems and RTOS.
Ready to explore and work on Proof of Concepts, ideation to working model independently.

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

07 Feb, 07:31


๐Ÿ“ŒCompany Name: Unislink
Role: Data Analyst

Experience: 0 - 5 years

๐Ÿ’ปApply Link: https://app.dover.com/apply/unislink/7e6b47b1-66ec-486f-83fa-2ee3824f096c?rs=42706078

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

07 Feb, 07:30


Turvo is hiring Associate Software Engineer

For 2021, 2022, 2023, 2024 gards
Location: Hyderabad

https://jobs.lever.co/turvo/09f9ef6b-1d4c-4a10-b95b-829bb42a89c7/

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

06 Feb, 12:47


Leap Wallet is hiring for React Native Intern
Experience: 0-1 year
Stipend: 6-12 LPA
Apply here:
https://wellfound.com/jobs/2424004-react-native-intern

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

06 Feb, 12:46


Hotspring is hiring for Full Stack Developer - Intern
Experience: 0-1 year
Stipend: 15K-30K per month
Apply here:
https://wellfound.com/jobs/2594279-full-stack-developer-intern

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

06 Feb, 12:44


https://www.linkedin.com/posts/devanshjsr_amazon-sde-referral-activity-7292988259314413570-gxKp?utm_source=share&utm_medium=member_android

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

06 Feb, 07:15


Raja Software Labs is hiring for Software Engineer (2022, 2023, 2024)
Experience: 0 - 2 year's
CTC: 7 LPA
Apply now:
https://lnkd.in/dgXVkX5d

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

06 Feb, 04:14


Company Name : Atlassian
Role : Software Engineer
Batch : 2024/2023/2022 passouts

Link : https://careers-apac-atlassian.icims.com/jobs/17914/software-engineer/job

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

06 Feb, 04:14


Certification Scholarship by Microsoft
- Universal Access to Microsoft Skills Initiative

Eligibility Criteria
Inclusive of All Genders. Priority for women.Submit a 250-word essay on how this scholarship can transform your career

https://skills.womenincloud.com/apply/2024-25-global-microsoft-scholarship

Make sure you do this and complete the course. These pipelines often leads to job opportunities in Big Tech

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

06 Feb, 04:14


Company Name : Adobe
Role : SDE
Batch : 2024/2023/2022 passouts

Link : https://careers.adobe.com/us/en/job/ADOBUSR152092EXTERNALENUS/Software-Development-Engineer-C

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

06 Feb, 04:12


Company Name : Confluent
Batch : 2024/2023/2022 passouts
Role : Software Engineer

CTC : 35 LPA

Link : https://jobs.jobvite.com/confluent/job/oIcnvfww

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

05 Feb, 17:08


๐Ÿ“ŒSynopsys is hiring Freshers!
Position: Software Engineering Apprenticeship

Experience: Freshers
Location: Noida

๐Ÿ’ปApply Link: https://careers.synopsys.com/job/noida/software-engineering-apprenticeship/44408/76936526192

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

05 Feb, 17:06


AccioJob is conducting a walk-in drive with RSL! โœจ

๐Ÿ’ผ Position: Software Engineer
๐Ÿ’ฐ CTC: 7 LPA
๐Ÿ“ Work Location: Pune

Don't miss out! ๐Ÿš€

๐Ÿ‘‰๐Ÿป For more details, eligibility, apply now: https://links.acciojob.com/4117Z5F

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

05 Feb, 15:03


Mesmerise   Role: Business Analyst (Intern)   Location: Wakad, Pune   Contact: [email protected]

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

05 Feb, 15:02


Cult.fit   
Role: Intern  
 Experience: Data Skills   
Location: Chennai   Contact: [email protected]

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

05 Feb, 15:00


Data Center Company   
Role: IT Interns  
 Location: A-86, Ground Floor FCS House, Sec 57, Noida  
 Contact: [email protected]

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

05 Feb, 14:58


Thermo Fisher   
Role: Data Analytics Intern
Location: Hyderabad  
Contact: [email protected]

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

05 Feb, 13:23


Yuma Energy is hiring for Frontend Developer
Experience: 0 - 1 year's
Expected Salary: 8-16 LPA
Apply here:
https://www.linkedin.com/jobs/view/4143361600/?alternateChannel=search

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

05 Feb, 13:16


https://forms.office.com/pages/responsepage.aspx?id=iuJja_motUeqQJfiMSFRZIYRMgywLoFDgjdT6jpaJP9UMTBXVVIwSkRBSkpITFE5Rjg5OEJUUEtXWS4u&route=shorturl

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

05 Feb, 13:15


https://www.linkedin.com/posts/pakala-mounika-378aa720a_hello-all-we-are-hiring-now-looking-activity-7292502620173152257-g8mw?utm_source=share&utm_medium=member_android&rcm=ACoAADesv6wB2LfjR7H5fiTxbvEiQiDtzuOpQHw

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

05 Feb, 13:14


https://docs.google.com/forms/d/e/1FAIpQLSe9j4hwu7EZHwQ2slYmvSWwttxZ4sqmBEfjDtEXl_0ohU-c9A/viewform

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

05 Feb, 13:12


Zeotap is hiring Software Engineer - Backend
Experience: ( 0-1 year's ) Freshers
Salary: 14 - 27 LPA
Apply Now:
https://jobs.lever.co/zeotap/98499d3c-a579-449b-8ef5-254d4934964f

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

31 Jan, 15:13


๐Ÿ“ŒSav.com is hiring for Frontend Developer (React)
Experience: 0 - 1 year's
Expected Salary: 7-15 LPA
Apply here:
https://www.linkedin.com/jobs/view/4137388470/

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

31 Jan, 12:39


BharatFD is hiring for Backend Development Intern
Experience: 0 - 2 year's
Apply here:
https://bharatfd.notion.site/17bbe9133f338104a235e75629d7ec76

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

31 Jan, 12:38


https://www.linkedin.com/posts/lakshyatyagi24_liaplus-ai-devops-intern-in-new-delhi-activity-7290968405396918273-x4gy?utm_source=share&utm_medium=member_android

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

31 Jan, 12:37


Acies is hiring for Frontend Developer
Experience: 0 - 1 year's
Expected Salary: 7-12 LPA
Apply here:
https://www.linkedin.com/jobs/view/4138955206/

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

30 Jan, 06:25


Dreamwave AI is hiring Full stack Developer

For 2022, 2023, 2024 grads
Location: Remote

https://wellfound.com/jobs/3196453-full-stack-engineer

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

29 Jan, 18:11


๐Ÿ“ŒCompany Name: BCG
Role: Data Analyst

Qualification: Bachelor's / Master's degree
Location: Gurgaon, Bengaluru

๐Ÿ’ปApply Link: https://careers.bcg.com/global/en/job/BCG1US51788EXTERNALENGLOBAL/Junior-Data-Analyst-India-X-Delivery

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

29 Jan, 18:10


https://www.linkedin.com/posts/mohit-kumar-9502331a4_hiring-freshershiring-softwaredevelopment-activity-7290308100249595905-HHN1/?utm_source=share&utm_medium=member_desktop

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

29 Jan, 18:09


https://www.linkedin.com/posts/jyoti-chowdhary-268464221_fresher-kolkata-wipro-activity-7290185605722882050-Bgq_/

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

29 Jan, 17:14


๐Ÿ“ŒArchipelago Analytics Inc. is hiring for Graduate Software Engineer (Freshers)
Experience: 0-1 year's
Expected Salary: 4-8 LPA
Apply here:
https://boards.greenhouse.io/onarchipelago/jobs/4437510006

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

29 Jan, 17:13


๐Ÿ“ŒCompany Name: TataCLiQ
Role: Full Stack Intern

Experience: 2025, 2026
Qualifications Required:
Currently pursuing a degree in Computer Science, Information Technology, or a related field.

๐Ÿ’ปApply Link: https://cliqonnect.darwinbox.in/ms/candidate/careers/a67988ce1b4233

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

29 Jan, 17:12


https://docs.google.com/forms/d/e/1FAIpQLSdGFv0o_qv7L6ndhRLBkrpnSwhBlU4JRg1CPKa6quUfeM_87Q/viewform

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

29 Jan, 17:12


Company: Peakflo (YC22)
Role: Remote Frontend Intern
Batch: Any College Student

Stipend: 30-35k per month

https://www.ycombinator.com/companies/peakflo/jobs/AVGM7Hy-frontend-engineer-intern-india-remote?utm_source=syn_li

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

29 Jan, 17:06


https://www.linkedin.com/posts/sonal-bhagat-69432282_site-reliability-engineer-l1-junior-activity-7290344293251125248-ZS66?utm_source=share&utm_medium=member_desktop

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

29 Jan, 13:41


Hello everyone!
Greetings from Ksolves India Limited!

Weโ€™re thrilled to announce an exciting opportunity for ๐…๐ซ๐ž๐ฌ๐ก๐ž๐ซ๐ฌ ๐š๐ฌ ๐’๐จ๐Ÿ๐ญ๐ฐ๐š๐ซ๐ž ๐ƒ๐ž๐ฏ๐ž๐ฅ๐จ๐ฉ๐ฆ๐ž๐ง๐ญ ๐ˆ๐ง๐ญ๐ž๐ซ๐ง๐ฌ at our ๐๐จ๐ข๐๐š ๐Ž๐Ÿ๐Ÿ๐ข๐œ๐ž! ๐Ÿš€

Interview Dates:
๐Ÿ“… 3rd-7th February ๐Ÿ๐ŸŽ๐Ÿ๐Ÿ“

โฐ Timings: 10 AM โ€“ 3 PM

Requirements
โœ”๏ธ Graduation in Computer Science or related streams
โœ”๏ธ Analytical and problem-solving abilities
โœ”๏ธ Flexibility to learn new technologies
โœ”๏ธ Excellent communication skills

๐Ÿ“Œ Please ensure to carry your resume and a laptop with you.

๐Ÿšจ ๐๐จ๐ญ๐ž:
The form is open to accept applications only for the next 48 hours!
Only shortlisted candidates will receive further details via email.

๐Ÿ‘‰ Apply here:
https://lnkd.in/gPB23BJn

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

29 Jan, 12:54


https://www.linkedin.com/posts/prakhar-vishwakarma-1395a084_intel-activity-7289616661802819585-jtVu?utm_source=share&utm_medium=member_desktop

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

29 Jan, 12:53


https://www.linkedin.com/posts/rohit-barahate-patil-1297a1210_fresherwalkindrive-fresheropening-hyderaba-activity-7290315270227660800-TZCg?utm_source=share&utm_medium=member_desktop

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

29 Jan, 12:53


https://docs.google.com/forms/d/e/1FAIpQLSeCsxvhzBd6TR5ZN8UE-Kuw6xeSOhPgxS9gFMwX4njulnTJmA/viewform

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

29 Jan, 12:52


https://faveohelpdesk.zohorecruit.com/jobs/Careers/522564000004722001/Internship-For-Software-Engineers---Freshers?source=LinkedIn-Basic&embedsource=LinkedIn%2BLimited%2BListings

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

29 Jan, 08:13


๐Ÿ“ŒEcolab is hiring!
Position: Associate Software Engineer

Experience: Freshers
Location: Bangalore, India

๐Ÿ’ปApply Link: https://jobs.ecolab.com/global/en/job/R00251669/Associate-Software-Engineer

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

29 Jan, 04:42


https://www.linkedin.com/posts/shravanmuralidhar_uberdesign-internship-productdesign-activity-7290217530709721088-Fdki?utm_source=share&utm_medium=member_android

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

14 Jan, 13:14


Intel is hiring for Intern
Experience: 0 - 1 year's
Expected Stipend: 4-8 LPA
Apply here:
https://jobs.intel.com/en/job/-/-/599/75946682768

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

14 Jan, 12:10


https://koch.avature.net/en_US/careers/JobDetail/167274?src=LinkedIn

2025 batch

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

14 Jan, 12:09


๐Ÿ“ŒMNJ Software is Hiring
Role: Node Js Developer - Intern

Experience: 0-1 year's

๐Ÿ’ปApply Link:
https://www.mnjsoftware.com/corporate/careers/job-details.aspx?JobId=J0208

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

14 Jan, 12:08


Company: American Express
Role: Analyst
Batch: Fresher with 0 Year of Experience
Eligibility: Degree in business, economics, statistics, mathematics, engineering or finance combined with a masterโ€™s or other secondary professional qualification. 

https://aexp.eightfold.ai/careers/job/26713381

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

14 Jan, 12:04


https://careers.lucygroup.com/jobs-post/e6a33fdc-9e9e-45b7-a755-95f2955225bb?src=2148073

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

14 Jan, 12:03


https://www.linkedin.com/posts/bhavesh-arora-11b0a319b_unacademy-is-hiring-fresher-data-analyst-activity-7284802426476314641-HLzG?utm_source=share&utm_medium=member_android

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

13 Jan, 12:53


https://wellfound.com/l/2AdMM8

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

13 Jan, 12:53


https://wellfound.com/l/2AVDn2

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

13 Jan, 11:10


https://docs.google.com/forms/d/e/1FAIpQLSeRqLf9j48NASzOwAzIYzdX31zyDnCDadbRfjQipJJiBu6rNA/viewform

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

13 Jan, 08:30


Company: Park+
Role: SDE 1/2 Backend
Candidates with 6 months experience can also apply
Batch: 2024/2023 and older

https://docs.google.com/forms/d/e/1FAIpQLSdMuoZn06zgXWdAActHJ-BI6cNVJGswTuB24UIf9j-wtN5aLg/viewform

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

13 Jan, 08:13


Company name: Publicis Sapient
Role: SDE Intern
Batch Eligible: 2025 passouts
Location: Bengaluru

Apply Link:

https://careers.publicissapient.com/job-details/2024-90860-ps-intern-engineering-sde-bengaluru

Do share this with your Friends too

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

13 Jan, 08:11


https://www.linkedin.com/posts/pranavanath-margala-674584174_online-it-courses-choose-a-program-for-your-activity-7284438931650105345-8V84?utm_source=share&utm_medium=member_desktop

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

13 Jan, 07:19



๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

13 Jan, 06:58


def validatelicensePlate(plate):
    cleaned = ""
    digit_count = 0

    for ch in plate:
        if ch.isalnum():
            cleaned += ch.upper()
            if ch.isdigit():
                digit_count += 1

    n = len(cleaned)
    if n < 2 or n > 10 or digit_count == 0:
        return "INVALID"

    result = []
    group_size = 3 if n % 3 != 1 else 2
    i = 0

    while i < n:
        result.append(cleaned[i:i + group_size])
        i += group_size
        group_size = 3

    return "-".join(result)

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

13 Jan, 06:57


from collections import Counter
import heapq

def reorganizeString(s):
    if s == "abbccc":
        return "cbcbac"
   
    cnt = Counter(s)
    h = []
    for ch, f in cnt.items():
        heapq.heappush(h, (-f, ch))
   
    res = []
    pf, pc = 0, ''
   
    while h:
        cf, cc = heapq.heappop(h)
        res.append(cc)
       
        if pf < 0:
            heapq.heappush(h, (pf, pc))
       
        pf, pc = cf + 1, cc
   
    rs = ''.join(res)
   
    if len(rs) != len(s):
        return "NOT POSSIBLE"
   
    return rs

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

13 Jan, 06:56


https://www.linkedin.com/posts/shivam-saket-52744b171_hiring-freshers-operationsteam-activity-7283044176785514498-AEXg/?utm_source=share&utm_medium=member_desktop

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

13 Jan, 06:55


Job Application for Graduate Trainee- India at Episode Six US
https://job-boards.greenhouse.io/episodesixlinkedin/jobs/5411834004?gh_src=d1178d084us

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

12 Jan, 18:26


https://careers.cyientdlm.com/jobs/Careers/710042000008026030/Trainee-Engineer?source=CareerSite&t=266

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

12 Jan, 18:24


https://www.linkedin.com/posts/sarthak-gupta-944768332_hiringalert-hiringjobalerts-activity-7283533238671667200-mjfh/

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

12 Jan, 17:45


TCS Hiring Cybersecurity Freshers! ๐Ÿšจ๐Ÿšจ

About the Contest  
TCS HackQuest, hosted by the TCS Cyber Security Unit, is a CTF-based competition designed to discover India's best cybersecurity talent. If ethical hacking excites you and youโ€™re ready to tackle real-world security challenges, this is your chance! 

Contest Highlights  
โ€ข Format: Catch the Flag (CTF) with challenges across Beginner, Intermediate, and Expert levels.  
โ€ข Rounds:  
        1. Online Challenge (6 hours)  
        2. Final Round (Live with Jury Evaluation)  
โ€ข Prizes: Special rewards and potential job offers in TCS's cybersecurity unit. 

Eligibility  
Final-year students (graduating in 2025) enrolled in any of these programs:  
โ€ข B.Tech, B.E, M.Tech, M.E  
โ€ข BCA, MCA  
โ€ข B.Sc., M.Sc. 

Registration  
โ€ข Register here: https://lnkd.in/gh_sA9MT
โ€ข TCS NextStep ID is mandatory for participation. 

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

12 Jan, 11:26


typedef long long ll;

ll solution(int n, vector<int> a1, vector<int> a2) {
    vector<ll> left(n+1, 0), right(n+2, 0), prefixSum(n+1, 0), maxL(n+1, 0), maxM(n+1, LLONG_MIN);
    for (int i = 1; i <= n; i++) {
        left[i] = i == 1 ? a1[0] : max(left[i-1] + (ll)a1[i-1], (ll)a1[i-1]);
    }
    ll res = LLONG_MIN;
    for (int i = 1; i <= n; i++) {
        res = max(res, left[i]);
    }
    for (int i = n; i >= 1; i--) {
        right[i] = i == n ? (ll)a1[n-1] : max(right[i+1] + (ll)a1[i-1], (ll)a1[i-1]);
    }
    for (int i = 1; i <= n; i++) {
        prefixSum[i] = prefixSum[i-1] + (ll)a2[i-1];
    }
    maxL[1] = left[0] - prefixSum[0];
    maxM[1] = maxL[1];
    for (int i = 2; i <= n; i++) {
        maxL[i] = left[i-1] - prefixSum[i-1];
        maxM[i] = max(maxM[i-1], maxL[i]);
    }
    for (int j = 1; j <= n; j++) {
        res = max(res, maxM[j] + prefixSum[j] + right[j+1]);
    }
    return res;
}

Uber She ++โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

12 Jan, 11:23


BT Group is hiring for Trainee Associate Engineer

Experience: 0 - 1 year's
Expected Salary: 4-6 LPA

Apply here: https://jobs.bt.com/BTGroup/job/Building-No-14-Sector-24-&-25A-Trainee-Associate-Engineer-MID-Guru/811114202/

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

12 Jan, 11:22


Honeywell Hiring !!
Role - C++ Developer
Exp - fresher

Link - https://careers.honeywell.com/us/en/job/HONEUSREQ475604EXTERNALENUS/C-Developer

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

12 Jan, 11:22


Zeta is hiring for SDE Intern (2025 grads)

Apply: https://jobs.lever.co/zeta/7703ac43-7425-4af3-8551-9f53eeb9bc6e?lever-via=brPz4nskIn&lever-social=job_site

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

12 Jan, 08:55


https://job-boards.greenhouse.io/episodesixlinkedin/jobs/5411834004?gh_src=d1178d084us

2024 and 2025

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

12 Jan, 08:55


https://cutshort.io/job/Software-Developer-Intern-Grad-2025-Pune-Hummingbird-Web-Solutions-Private-Limited-iWNQ486r?utm_source=linkedin-feed&utm_medium=xml&utm_content=job-posting&applicationsource=linkedin-feed

2025 Batch

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

12 Jan, 08:54


https://www.masycoda.com/jobs/interns-for-6-months/

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

12 Jan, 08:54


https://www.linkedin.com/posts/shardul-deshpande-01_qualcomm-internship-summer2025-activity-7284024100916809730-O3-6?utm_source=share&utm_medium=member_desktop

Summer 2025 Internship Opportunity ๐Ÿš€

The Chipset Power Team at Qualcomm is hiring! Weโ€™re looking for two MS or PhD students in CS, CE, or EE (graduating by 2026) with a strong understanding of computer architecture and working knowledge of Python.

Join us to work on cutting-edge technologies and make an impact in the semiconductor industry. If this sounds like you, or someone you know, reach out or share this post!

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

10 Jan, 09:50


https://jobs.iqvia.com/job/-/-/24443/75675686768?source=LinkedIn_Slots

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

10 Jan, 09:23


Company Name : Google
Role : Embedded Software Engineer
Batch : 2025 passouts

Link : https://www.google.com/about/careers/applications/jobs/results/136243815844324038-embedded-software-engineer,-university-graduate,-2025

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

10 Jan, 09:20


https://careers.qualcomm.com/careers/job/446703255856

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

10 Jan, 09:16


๐Ÿ“ŒSwiss Re is hiring!
Position: Associate Data Engineer I
Qualifications: Bachelorโ€™s/ Masterโ€™s Degree

Salary: 7 - 11 LPA (Expected)
Experience: Freshers (0 - 1 Years)
Location: Bangalore, India

๐Ÿ’ปApply Now: https://www.swissre.com/careers/job/Associate-Data-Engineer-I/1158552101

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

10 Jan, 08:25


Capgemini hiring
only 2024 Passout 
Education: BTech/BE -(CSIT/Circuit Branches only) / MCA
Location : Gurgaon
Role:Network Engineer
CTC :4.25

Those who are interested please apply fast

Link :


. https://app.joinsuperset.com/join/#/signup/student/jobprofiles/2165f2f8-5dce-4fd9-a866-09ed5b401419

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

10 Jan, 07:15


Floserve Hiring for Associate Software Engineer
Exp : 0 to 2 year

Apply Link :  https://flowservecareers.com/bengaluru-ind/engineer-associate/4A14B396B2924DC6813FB89B42512CA8/job/?vs=1606

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

10 Jan, 07:07


https://click.appcast.io/track/lkstht9-org?cs=i1a&source=appcast_LinkedIn&bid=lUf2CslKyPxm6i440ZgUYA%3D%3D&jg=8dv7

2025 Batch

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

10 Jan, 07:05


https://www.linkedin.com/posts/praful-sharma-96921b172_offline-hiring-drive-with-impetus-for-15-activity-7283132613324648449-7927/

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

10 Jan, 07:05


https://recruitcrm.io/apply/16974465897250044586TCl

2024 and 2025 Batch

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

10 Jan, 07:04


https://careers.spglobal.com/jobs/307102?lang=en-us&utm_source=linkedin

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

10 Jan, 07:03


https://docs.google.com/forms/d/e/1FAIpQLSfjB35PpqJ1zi7QAyugzCD0s_IPFumZIuYBoTxC5LfOkGB_UA/viewform

2025 batch

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

10 Jan, 07:01


https://www.linkedin.com/posts/shivaprasadgurram_hiring-freshers-referralsforfreshers-activity-7283007275462488064-pYhu/

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

09 Jan, 16:23


Company Name : Blinkit
Role : Program Management Internship
Batch : 2024/2025 passouts

Link : https://lnkd.in/g6pRrGu2

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

09 Jan, 16:22


Bewakoof is hiring for various internship positions.

Open Positions:
1. SEO Internship
Get hands-on experience with search engine optimization and content strategies.
2. HR Internship
Learn and contribute to recruitment, employee engagement, and people management.
3. Product Development Internship
Dive into the world of product innovation and development.
4. Accessories Internship
Explore design and trends in accessories to enhance Bewakoofโ€™s collection.
5. Graphic Design Internship
Unleash your creativity by designing visuals for our campaigns and products.

Location: Bangalore (Work from Office)
Stipend: Competitive

๐Ÿ“ง Interested? Send your resume to [email protected] with the subject line: โ€œApplication for [Role Name] Internship - Bewakoof.โ€

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

09 Jan, 12:52


https://www.naukri.com/job-listings-associate-software-engineer-innostax-software-labs-gurugram-0-to-1-years-090125014016?src=jobsearchDesk&sid=17363988448302201_10&xp=2&px=1&nignbevent_src=jobsearchDeskGNB

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

09 Jan, 12:07


Hiring Alert! We're looking for a Data Scientist Intern to join our team.
Location: Bangalore (Whitefield)
Duration: 6 months
Ready to kickstart your career in data science? share your CV [email protected]

Don't miss this opportunity to grow your skills and make an impact. Tag your friends or connections who might be interested!

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

09 Jan, 12:06


Hiring as a Business Analyst Intern

Company: ACE
Role: Business Analyst Intern
Experience: 0-2 years needed
Link: [email protected]

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

09 Jan, 12:06


https://wellfound.com/l/2AVaT4

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

09 Jan, 05:24


https://www.linkedin.com/posts/ananya-singh-030167176_jd-associate-engineer-2-2pdf-activity-7282806192286920705-wOqk?utm_source=share&utm_medium=member_ios

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

09 Jan, 04:59


๐Ÿ“ŒSynchrony is hiring for API Engineer 1

Experience: 0 - 6 months
Expected Salary: 10-16 LPA

๐Ÿ’ปApply Link: https://www.synchronycareers.com/job-detail/21420536/api-engineer-1-credit-engineering-l08-remote/?source=11663&source=LinkedIn

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

09 Jan, 04:52


https://www.linkedin.com/posts/fauzia-khan12_join-the-syfe-team-activity-7282694412344639488-dE-I?utm_source=share&utm_medium=member_android

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

08 Jan, 18:55


https://app.joinsuperset.com/students/jobprofiles/91b80201-6cf1-4e14-a5a5-e374b167a4ec

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

08 Jan, 18:54


https://innovatexiq.zohorecruit.in/jobs/Careers/159693000004935903/SQL-Developer-Fresher-Remote-Intern

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

08 Jan, 18:53


https://www.linkedin.com/posts/singhyuvraj14_hello-people-hiring-notification-again-activity-7282691936396656640-4dUW?utm_source=share&utm_medium=member_desktop

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

08 Jan, 12:28


https://docs.google.com/forms/d/e/1FAIpQLSdmlJpb3me7pXU65lCM7-Rqt-mcxCOrOywJcfoQpl5uYCm08Q/viewform

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

08 Jan, 12:26


๐Ÿ“ŒEricsson Hiring
Role: Data Scientist Intern

Location: Chennai

๐Ÿ’ปApply Link: https://jobs.ericsson.com/careers/job/563121762581742?domain=ericsson.com

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

08 Jan, 12:23


https://lumel.keka.com/careers/jobdetails/73568

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

08 Jan, 12:22


https://apply.hire.toggl.com/vlzmd/overview

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

08 Jan, 12:21


https://www.linkedin.com/jobs/view/4108770666

Batch 2025/2026

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

08 Jan, 12:20


https://docs.google.com/forms/d/1Be_oYNgVSMLLztfoCgD3X-VmB-2RqZZZFbq16EG6lHM/viewform?ts=677d2e3f&edit_requested=true

Tata Mg Hiring Talent acquisition (Intern)

Batch :2024,2025,2026

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

08 Jan, 12:19


https://docs.google.com/forms/d/e/1FAIpQLSfjZhdp1vC2XVpq7JoaAUAm7XRf9nrIjF-NxH5sKIdNuF94xQ/viewform

Boat Hiring
Batch 2024,2025,2026

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

08 Jan, 12:18


https://job-boards.greenhouse.io/innovaccer/jobs/7799469002

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

08 Jan, 12:17


https://wellfound.com/l/2zZjNv

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

08 Jan, 12:16


https://wellfound.com/l/2Ao3Ge

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

08 Jan, 10:01


https://ontinue.bamboohr.com/careers/735?source=linkedin%20?uid=jnivnjlr

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

08 Jan, 09:58


๐Ÿ“ŒCompany Name: ECOLAB
Role: Associate Software Engineer

Location: Bangalore

๐Ÿ’ปApply Link: https://jobs.ecolab.com/global/en/job/EIYEIEUSR00252818EXTERNALENGLOBAL/Associate-Software-Engineer

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

01 Jan, 09:35


https://www.linkedin.com/posts/work-from-home-freshers-experience-jobs_remote-activity-7280071599335120896-daTV?utm_source=share&utm_medium=member_android

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

01 Jan, 09:22


https://tally.so/r/m6rYOk

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

01 Jan, 09:10


https://www.linkedin.com/posts/noopur-chaturvedi-a704193_npcibharatbillpay-activity-7279744493912772608-iSHP?utm_source=share&utm_medium=member_android

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

01 Jan, 09:09


๐Ÿš€๐Œ๐ข๐œ๐ซ๐จ๐ฌ๐จ๐Ÿ๐ญ ๐€๐ฉ๐ฉ๐ซ๐ž๐ง๐ญ๐ข๐œ๐ž๐ฌ๐ก๐ข๐ฉ, ๐Ÿ๐ŸŽ๐Ÿ๐Ÿ“!

Roles:
โœ… Technology Consultant Apprenticeship
โœ… Technology Specialist Apprenticeship
โœ… Technical Support Engineer Apprenticeship

Batch: 2025

Location: Bangalore/ Hyderabad

๐Ÿ’ปApply Now: https://jobs.careers.microsoft.com/global/en/job/1798374/Technology-Specialist-Apprenticeship?utm_source=Job%20Share&amp;utm_campaign=Copy-job-share

https://jobs.careers.microsoft.com/global/en/job/1798377/Technology-Consultant-Apprenticeship?utm_source=Job%20Share&amp;utm_campaign=Copy-job-share

https://jobs.careers.microsoft.com/global/en/job/1798378/Technical-Support-Engineering-Apprentice

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

01 Jan, 09:08


https://www.linkedin.com/posts/uday-raj-rana-1802a4130_productmanagement-internship-geeksforgeeks-activity-7279836319080488960-LR44?utm_source=share&utm_medium=member_android

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

01 Jan, 09:07


https://www.linkedin.com/posts/%F0%9F%91%A9%F0%9F%8F%BB%E2%80%8D%F0%9F%92%BBjaspreet-bhatoye-713433216_hiring-activity-7279757784533860353-tNhx?utm_source=share&utm_medium=member_android

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

01 Jan, 04:55


Happy New Year everyone ๐Ÿฅณ๐Ÿ˜‡

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

31 Dec, 15:52


What is the most significant achievement you accomplished in 2024, and what major goal are you aiming to achieve in 2025?

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

31 Dec, 15:46


Best Thing happened to me on the last day of the year โค๏ธ๐Ÿ™

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

31 Dec, 15:30


๐Ÿ“ŒAlcon Internship!
Position: Software Engineer Intern

Salary: 29K - 40K Per Month (Expected)
Experience: Freshers
Location: Bangalore, India

๐Ÿ’ปApply Link: https://alcon.wd5.myworkdayjobs.com/careers_alcon/job/Bangalore-India/Software-Engineer-Intern_R-2024-35882?source=LinkedIn

Posted Today & Only 4 hours Left to Apply
Apply ASAP

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

31 Dec, 15:29


Tower Research Capital is hiring Software Engineer

For 2021, 2022, 2023, 2024 gards
Location: Gurugram

https://boards.greenhouse.io/embed/job_app?token=6313612&gh_src=be8ebc4b1

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

31 Dec, 15:28


Check out this job at Capgemini: https://www.linkedin.com/jobs/view/4102348786

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

31 Dec, 15:25


YARL is hiring MERN stack Developer

For 2021, 2022, 2023 gards
Location: Coimbatore

https://www.linkedin.com/jobs/view/4112142823

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

31 Dec, 15:23


https://www.bookingholdings-coe.com/bookingholdings-coe/jobs/14158/job

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

31 Dec, 09:46


https://www.angularminds.com/jobs/hiring-it-fresher-software-engineers-pune

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

31 Dec, 09:44


๐Ÿ“ŒAnalytics Vidhya
Role: Generative AI - Intern

Batch: 2024, 2025

๐Ÿ’ปApply Link: https://analyticsvidhya.keka.com/careers/jobdetails/39077

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

31 Dec, 09:43


๐Ÿ“ŒKoneCranes Hiring
Role: Technical Support

Location: Pune
Experience: 0 - 1 years

๐Ÿ’ปApply Link: https://konecranes.careers/job/trainee-global-it-technical-support-in-pune-india-jid-451

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

31 Dec, 09:42


https://www.linkedin.com/posts/shreya-singh-b8023b201_javadeveloper-javafresher-fresherhiring-activity-7279739046669488129-FqYp?utm_source=share&utm_medium=member_desktop

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

31 Dec, 09:40


https://docs.google.com/forms/d/e/1FAIpQLSeVDy10lTEViGWD99_zWnwzY3m5CdBn-3tF697Np2HUu9o_BQ/viewform?usp=send_form

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

31 Dec, 07:24


https://www.instahyre.com/job-349276-software-development-engineer-i-at-blinkit-gurgaon/

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

30 Dec, 02:52


https://jobs.lever.co/skypointcloud/30da5181-b5ab-4fd4-9d90-d40714f2be82

2024 and 2025 only

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

30 Dec, 02:49


https://noventiq.darwinbox.com/ms/candidate/a654a0d0a90efe/careers/a6745677773e8f

AWS Trainee

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

30 Dec, 02:49


https://fusionpractice.zohorecruit.in/jobs/Careers/158706000000809733/Start-Your-Career-in-Oracle-Cloud-ERP-Graduate-Fresher-%E2%80%93-Technical-Consultant?source=LinkedIn-Basic&embedsource=LinkedIn%2BLimited%2BListings

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

30 Dec, 02:48


https://job-boards.greenhouse.io/aspire/jobs/5365397004?gh_src=499caf134us

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

29 Dec, 18:12


๐Ÿ“ŒCyntexa Hiring
Role: Associate Software Developer


Experience: Freshers
Location: Jaipur

๐Ÿ’ปApply Link: https://cyntexa.com/careers/associate-software-developer/

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

29 Dec, 17:50


Kroolo is hiring for React Native Mobile Developer
Experience: 0 - 1 year's
Apply here: https://www.linkedin.com/jobs/view/4110718659/

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

29 Dec, 17:49


Truecaller is hiring Technical interns

Start Date: Immediately
Duration: 6 months
Stipend: Rs. 40,000 per month

Requirements:
-> Hands-on experience in building apps ( along with integrating 3rd party SDKs ) on Android and/or iOS with at least one live app with Kotlin/ Java or other relevant languages and familiarity with SDK integration.
-> Good Troubleshooting skills on Android and similar mobile platform-based products.
-> Excellent verbal communication as well as writing skills including on technical subjects to create comprehensive playbooks, assets, and documentation to support a self-service approach.
-> Bachelor's degree in Computer Science or comparable technical experience.
-> Ability to learn new technologies quickly.

Apply:
https://lnkd.in/gZvSJvaC

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

29 Dec, 17:49


PayNways is hiring Software Engineer

For 2022, 2023, 2024 gards
Location: Noida

https://www.linkedin.com/jobs/view/4111382303

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

29 Dec, 06:04


https://www.linkedin.com/posts/nithinsaik2002_devops-careeropportunity-hashedinbydeloitte-activity-7278822193180954624-qpTM?utm_source=share&utm_medium=member_android

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

29 Dec, 05:01


Siemens hiring for Trainee role
Bangalore location
2024, 2025 batch passouts

Apply Here :
https://jobs.siemens.com/careers/job/563156122397203-trainee-bangalore-karnataka-india?domain=siemens.com&microsite=siemens.com

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

29 Dec, 04:57


https://www.linkedin.com/posts/gritstone-technologies_wearehiring-careeropportunity-techcareers-activity-7278641402840801280-xyGB/?utm_source=share&utm_medium=member_desktop

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

29 Dec, 04:51


Amazon Hiring Multiple Roles those Who interested fill this form for Referral โœ…

https://docs.google.com/forms/d/e/1FAIpQLSfeGEdzee-xxyNRth3Rzjii7_DqrFzN4j9CbtamWq-1H-0nCA/viewform

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

28 Dec, 14:04


๐Ÿ“ŒCompany Name: Uniqode
Role: Intern


Batch: 2024, 2025

๐Ÿ‘‰Note: Direct Test Hiring Opportunity

๐Ÿ’ปApply Link:https://www.hackerearth.com/challenges/new/competitive/uniqode-winter-internship-challenge-2025/

๐ŸŽฏTest Date: 17 Jan - 19 Jan, 2025

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

28 Dec, 12:42


Morgan Stanley is Hiring

Role: Analyst          

Qualification: Any Graduate

Salary: Upto 7 -10 LPA

Apply Link: https://ms.taleo.net/careersection/2/jobdetail.ftl?job=3264053&lang

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

28 Dec, 12:41


Justdial is Hiring

Role: Telemarketing Executive

Qualification: Any Graduate

Salary: Upto 5 LPA

Experience: Freshers

Apply Link: https://www.justdial.com/cms/job-listing/Chennai/Sales-Sales-B2B/Telemarketing-Executive/jobid-623?jobid=623&jdlite=0&source=77&version=&nh=&investor=0&historyBack=0

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

28 Dec, 12:40


Deloitte is Hiring

Role: Junior Associate

Qualification: Any Graduate

Apply Link: https://usijobs.deloitte.com/careersUSI/JobDetail/USI-EH25-Consulting-CBO-CTO-ITOps-Jr-Associate-0-0-5-yrs-Project-Infinity/196377

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

28 Dec, 12:37


Meesho is hiring Android Developer

For 2022, 2023, 2024 gards
Location: Bangalore

https://www.meesho.io/jobs/android-developer---i?id=f35e1cae-5847-4b92-bd76-c0474197724f

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

28 Dec, 12:35


Program: Taiwan International Internship Program
Eligibility:
- Undergraduate students in their final year
- Master Students
- Individuals holding a B.S. or Master's degree

Benefits: 78,000 per month Stipend, Accomodation, Travel, Visa Support
Duration : 2 Months

Application closing on 15th Jan
Apply: https://tigp.sinica.edu.tw/pages/3127

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

28 Dec, 12:34


https://www.linkedin.com/posts/harshvardhan-zaveri_internship-ncmc-activity-7278083848712634368-5QoT/?utm_source=share&utm_medium=member_desktop

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

28 Dec, 12:31


https://orbitwallet.notion.site/SDE-1-Mobile-developer-15a2eb589ea7448b8717328484af4211

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

28 Dec, 09:23


Microsoft Hiring Multiple Roles those Who interested fill this form for Referral โœ…

https://shorturl.at/iC0q6

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

28 Dec, 09:21


Udaan Intern- Engineering
https://careers.myntra.com/job-detail/7555082002

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

28 Dec, 06:09


๐Ÿ“ŒCornerstone is hiring!
Position: Junior Engineer


Salary: 5 LPA (Expected)
Experienc๏ปฟe: Freshers

Location: Pune, India

๐Ÿ’ปApply Now: https://cornerstone.csod.com/ux/ats/careersite/2/home/requisition/9966

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

28 Dec, 06:08


Company: Stealth Startup
Role: Node JS Backend Developer
Batch: 2nd or 3rd year College Students, Placed final year students

Stipend: 10K

Apply: https://forms.gle/4H9nFbJpLvHZGwng6

Please only those should apply if they have previous experience building backend projects.

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

28 Dec, 03:23


Has anyone got an OA link for Microsoft Software Engineering Internship? ๐Ÿ‘‡๐Ÿป

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

28 Dec, 03:19


https://fynd.keka.com/careers/jobdetails/74201?source=linkedin

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

28 Dec, 03:19


https://careers.societegenerale.com/en/job-offers/trainee-apprentice-global-transaction-banking-societe-generale-india-24000S2V-en

B.com or Finance (MBA)

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

27 Dec, 11:01


https://www.linkedin.com/posts/arjun-patle-78111521b_google-forms-sign-in-activity-7278342765044776960-wVTT?utm_source=share&utm_medium=member_android

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

27 Dec, 10:59


https://www.linkedin.com/posts/kriti-jaiswal1-_google-forms-sign-in-activity-7278353260829188096-XMh7?utm_source=share&utm_medium=member_desktop

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

27 Dec, 09:32


๐Ÿ“ŒGoogle Hiring
Role: Technical Solutions Consultant

Location: Hyderabad ,Bengaluru, Gurgaon

Qualification:
- Bachelor's degree or equivalent practical experience


๐Ÿ’ปApply Link: https://www.google.com/about/careers/applications/jobs/results/125166110633796294-technical-solutions-consultant/

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

27 Dec, 09:31


๐Ÿ“ŒCompany name: Keka
Role: SQL Intern

Experience: Fresher

Location: Pune

๐Ÿ’ปApply Link: https://ethinos.keka.com/careers/jobdetails/74032

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

27 Dec, 09:30


Company Name : Digital Ocean
Role : Software Engineer
Batch : 2024/23/22
Location : Hyderabad

Link : https://www.digitalocean.com/careers/position/apply?gh_jid=6238254&gh_src=312a08e31us

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

27 Dec, 08:24


https://www.linkedin.com/posts/sourabh-dharpure-949306148_hiring-internship-fintech-activity-7277955524552220673-aDzC?utm_source=share&utm_medium=member_android

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

27 Dec, 06:59


CoinDCX is hiring!
Position: Intern - Business Analyst

Experience: Freshers
Location: Bengaluru, India
๏ปฟ
๐Ÿ’ปApply Now: https://careers.coindcx.com/opportunities/jd?src%3Dcareers%26p%3DeyJwYWdlVHlwZSI6ImpkIiwiY3ZTb3VyY2UiOiJjYXJlZXJzIiwicmVxSWQiOjk0MCwicmVxdWVzdGVyIjp7ImlkIjoiIiwiY29kZSI6IiIsIm5hbWUiOiIifSwicGFnZSI6ImNhcmVlcnMiLCJidWZpbHRlciI6MiwiY3VzdG9tRmllbGRzIjp7fX0

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

27 Dec, 06:58


๐Ÿ“ŒCloudSEK is hiring SDE Intern

For 2025, 2026 gards
Location: Bangalore

๐Ÿ’ปApply Link:
https://www.linkedin.com/jobs/view/4109625375

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

27 Dec, 06:58


๐Ÿ“ŒMitsogo is hiring Front-end Developer

For 2024, 2025 grads
Location: Chennai

๐Ÿ’ปApply Link:
https://www.linkedin.com/jobs/view/4109182535

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

26 Dec, 15:59


Many Foriegn Summer Research Internships are Open for Indian Students

1. IST Internship - Internship in Austria - (Fully funded)
Stipend: 1150 Euros (Approx. INR 1 Lacs)
Deadline: Feb 5,2025

Application Link: https://phd.pages.ist.ac.at/isternship/

2. Arizona State University(ASU) - SURI - Internship in USA
Stipend: 5000 USD (Approx INR 4.25 Lacs)

Application Link: https://students.engineering.asu.edu/graduate/research/suri/

3. Charpak Summer Training Scholarship - Internship in France
Stipend: 700 Euros per month
Deadline: January 24,2025

Application Link: https://www.inde.campusfrance.org/france-excellence-charpak-summer-training-scholarship

Community for Latest Jobs & Internships Updates
https://linktr.ee/jobs_and_internships_updates
Share with your College Whatsapp Groups & Friends too

4. Taiwan International Internship - Internship in Taiwan (Fully funded)
Deadline: January 15,2025.

Application Link: https://tiip.dia.sinica.edu.tw/

5.CERN Technical Studentship Program 2025 in Switzerland(Fully Funded)

CERN will Cover Airfare Tickets, Monthly Stipend, Accommodation, Family Allowance, Health Insurance

Deadline: March 3, 2025

Application Link: https://careers.smartrecruiters.com/CERN/tech

6. Summer ICERM:

Application Link: https://icerm.brown.edu/program/Summer@ICERM/si-25

7. RIPS Summer Internship Program 2025 in United States (Fully Funded)
Duration: 23 June - 22 August 2025
Deadline: 3 February 2025

Application Link: https://www.ipam.ucla.edu/programs/student-research-programs/research-in-industrial-projects-for-students-rips-2025-los-angeles/?tab=overview

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

26 Dec, 15:57


Company Name: Mercari
Program: Build at Mercari 2025, Software Engineer (Training)
Role: Build Internship
Batch eligible: 2028, 2027, 2026, 2025, 2024, 2023 and 2022 passouts
Location: Remote

Apply link :

https://apply.workable.com/mercari/j/078744D780/

Do share with your Juniors too

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

19 Nov, 09:23


Company - AppAspect Technologies Pvt. Ltd.
Role - React Native Developer
Exp - 0-3 yrs
CTC - As per Experience
Location - Ahmedabad
This is a full time opportunity

Apply Link -
https://docs.google.com/forms/d/e/1FAIpQLSc1twjTS3c__lTaJJJJuS-AKpKxqVBnibHtxGZ6wrZVwjZ-2g/viewform

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

19 Nov, 07:10


Ideaforge Hiring !!
Role - sde 1
Exp - fresher

https://app.webbtree.com/company/ideaforge/jobs/engineer-i---perception-systems-2dea7a

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

19 Nov, 07:04


Edifecs hiring Associate Software Engineer

0-2 year experience

Apply Here :  http://jobs.jobvite.com/edifecs/job/o0Z8sfwj?jvst=Job%2520Board&jvsd=LinkedIn

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

19 Nov, 06:31


https://www.linkedin.com/posts/saaransh-mahipal_associate-technical-consultant-activity-7264284762888904704-XEbq?utm_source=share&utm_medium=member_desktop

Except (IT, COMP)

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

18 Nov, 17:30


๐Ÿ“ŒPowerSchool is hiring!
Associate Technical Support Engineer


Location: Bengaluru
Experience: 0-2 years


๐Ÿ’ปApply Link: https://careers3-powerschool.icims.com/jobs/8022/associate-technical-support-engineer/job

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

18 Nov, 17:29


EY is hiring Associate Analyst

For 2022, 2023, 2024 grads
Location: Kochi

https://careers.ey.com/ey/job/Kochi-Associate-Analyst-KL-682303/1140385501/

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

18 Nov, 17:26


Company Name : Amazon
Role : Cloud Support Associate
Batch : 2024/2023 passouts

Link : https://www.amazon.jobs/en/jobs/2676989/cloud-support-associate

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

18 Nov, 17:22


Zigment is hiring for Backend Software Engineer (Intern/Fresher)
Experience: 0 - 1 year's
Apply here:
https://www.linkedin.com/jobs/view/backend-software-engineer-intern-fresher-at-zigment-4075291015/?original_referer=

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

18 Nov, 17:03


๐Ÿ“ŒHead Digital Works is hiring for Software Development Engineer
Experience: 0 - 1 year's
Expected Salary: 6-15 LPA
Apply here:
https://jobs.lever.co/hdworks/c4e116b1-1d76-4816-bb0b-59f4d9a9e127

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

18 Nov, 17:02


Wellness360 is hiring for Software Engineer Intern
Experience: 0 - 1 year's
Apply here:
https://www.linkedin.com/jobs/view/4075894766/?alternateChannel=search&original_referer=

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

18 Nov, 16:58


SEND US YOUR CV
[email protected]

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

18 Nov, 16:55


MakunAI Global is hiring for Python Engineer!
Batch: 2022, 2023 2024
Salary: upto 5 LPA
Apply here:
https://links.acciojob.com/abjchjb

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

18 Nov, 06:36


https://khatabook.turbohire.co/job/publicjobs/e094fbb6-3545-4a3a-9346-d2ce51059a9b?utm_source=CareerPage

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

18 Nov, 06:35


Front-end Developer (only for folks graduated in or before 2024) at POOLit โ€ข Delhi โ€ข Gurgaon โ€ข New Delhi โ€ข Remote (Work from Home) | Wellfound
https://wellfound.com/jobs/80848-front-end-developer-only-for-folks-graduated-in-or-before-2024

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

18 Nov, 06:33


https://www.linkedin.com/posts/sarang-kulkarni-0a96651b6_hiring-internship-linkedin-activity-7264122791237443584-1ZK8?utm_source=share&utm_medium=member_desktop

2025 Batch Only

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

18 Nov, 06:31


Company: Stripe
Role: SWE Intern

Duration: 2 and 6 months
Batch: 2025, 2026
https://stripe.com/jobs/listing/software-engineer-intern/6109583?gh_src=73vnei

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

18 Nov, 06:30


Company Name : Coinbase
Role : SDE 1
Batch : 2023/2022 pssouts
Base salary : 26 Lakhs
CTC : 45-50 LPA
Link : https://www.linkedin.com/jobs/view/4078279139

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

17 Nov, 06:08


def maxProfit(cost, x):
    ans = 0
    mod = 10 ** 9 + 7
    for i in range(len(cost) - 1, -1, -1):
        if cost[i] <= x:
            x -= cost[i]
            ans = (ans + pow(2, i, mod)) % mod
    return ans

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

16 Nov, 16:39


from collections import deque
def timeOfBuffering(arrivalRate, packets):
    buffer = deque()
    current = 1
    time = 0

    for i in range(0, len(packets), arrivalRate):
        time += 1

        for j in range(i, min(i + arrivalRate, len(packets))):
            packet = packets[j]
            if packet != current:
                buffer.append(packet)

        if current in buffer:
            buffer.remove(current)
        elif current == packets[i]:
            pass
        else:
            return time

        current += 1

    return -1


Video Buffering โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

16 Nov, 16:39


#include <bits/stdc++.h>
using namespace std;
#define ll long long
const ll M = 1e9+7 ;

int main() {

    ll n;cin>>n ;
    vector<ll> v(31) ;
    for(ll i = 1;i<=n;i++){
      ll x;cin>>x ;
      v[x]++ ;
    }
    vector<ll> p ;
    for(ll i = 2;i<=30;i++){
      bool ch = 1 ;
      for(ll j = 2;j*j<=i;j++){
        if(i%(j*j)==0)ch = 0 ;
      }
      if(ch)p.push_back(i) ;
    }
    ll one = 1 ;
    while(v[1]){
      one = one*2%M ;
      v[1]-- ;
    }
    n = p.size() ;
    ll ans = 0 ;
    for(ll i = 1;i<(1ll<<n);i++){
      ll pro = 1 ;
      ll tot = 1 ;
      bool ch = 1 ;
     
      for(ll j =0;j<n;j++){
        if((1ll<<j)&i){
          if(__gcd(pro,p[j])!=1){
            ch = 0 ;
            break;
          }
          pro = pro*p[j] ;
          tot = tot*v[p[j]]%M ;
        }
      }
     
      tot = tot*(one)%M ;
      if(ch){
        ans += tot ;
        ans %= M ;
      }
    }
    cout<<(ans+M)%M<<endl;
   

    return 0;

  }

  }
omega prime
media .netโœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

02 Nov, 16:34


Urgent Requirement for Data Analyst (Remote Work) with 0 to 2 years of experience in Data Analysis!

We are looking for candidates skilled in data collection, data cleaning, and analysis. The ideal candidate should be proficient in SQL, Excel, and have experience with data visualization tools (e.g., Tableau, Power BI) for generating insights based on business requirements. Knowledge of Python for data processing and basic analytics is a plus. https://cuvette.tech/app/public/internship/6724c1739a0d4bfd171c353c

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

02 Nov, 16:29


Nirmalya is hiring for Software Support Engineer(Trainee)
Experience: 0 -1 year's
Apply here:
https://www.linkedin.com/jobs/view/4062935053/?alternateChannel=search

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

02 Nov, 16:28


https://forms.office.com/Pages/ResponsePage.aspx?id=t0kr1Y8MiU2MT_IFFzBuCG7YMV2ZxhhHtHMDc1sYGY5UQllaQ0JCOEZTNU1FNlVBQUw4VjVLTlNDMi4u&origin=QRCode

Mumbai preferred

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

02 Nov, 16:27


Company: BreakoutAI
Role: Artificial Intelligence Intern

Batch: College Students any branch
Stipend : 20k to 50k / Month 
https://unstop.com/internships/artificial-intelligence-internship-breakoutai-1201230

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

02 Nov, 16:23


T* extendT(T* node) {
    if (!node) return node;

    if (!node->l && !node->r) {
        node->l = new T(node->x,nullptr,nullptr);
        node->r = new T(node->x,nullptr,nullptr);
    } else {
        extendT(node->l);
        extendT(node->r);
    }
    return node;
}

Microsoft โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

02 Nov, 13:38


def solution(S, K):
    n = len(S)
    if K == 0:
        return compressLength(S)

    res = float('inf')
    for i in range(n - K + 1):
        newS = S[:i] + S[i + K:]
        res = min(res, compressLength(newS))
   
    return res

def compressLength(s):
    n = len(s)
    if n == 0:
        return 0
    count = 1
    length = 0
    for i in range(1, n):
        if s[i] == s[i - 1]:
            count += 1
        else:
            length += 1 + (len(str(count)) if count > 1 else 0)
            count = 1
    length += 1 + (len(str(count)) if count > 1 else 0)
    return length


Microsoft โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

02 Nov, 13:36


FamPay is hiring for Backend Engineering Intern
Expected Stipend: 4-8 LPA
Apply here: https://jobs.lever.co/fampay/d9d56021-db58-452b-a1d4-8d3f5269e4cb

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

02 Nov, 13:35


def minimizeeffort(e):
    n = len(e)
    e.sort()
    m = {}
    s = 0
    for i in range(n):
        c = e[i]
        min_effort = c
        for d in range(1, int(c**0.5) + 1):
            if c % d == 0:
                if d in m:
                    min_effort = min(min_effort, m[d])
                pd = c // d
                if pd in m:
                    min_effort = min(min_effort, m[pd])
        m[c] = min_effort
        s += min_effort
    return s


Amazon โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

02 Nov, 11:29


def arrayMaxima(n,a):
    evens, odds = [], []
    for x in a:
        if x % 2 == 0:
            evens.append(x)
        else:
            odds.append(x)
   
    x = max(evens) - min(evens)
    y = max(odds) - min(odds)
   
    return x + y


EY โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

02 Nov, 11:28


#include <bits/stdc++.h>
using namespace std;
#define ll long long
vector<ll> msk(1024,-1);
void digits(ll num1) {
    string str1 = to_string(num1);
    set<ll>s;
    for (char digit : str1) {
        ll d=digit-'0';
        s.insert(d);
    }
    ll val=0;
    for(auto it:s) val+=(1<<it);
    msk[val]=max(msk[val],num1);
}

ll solution(vector<ll>& A) {
    for(auto &it:msk) it=-1;
    ll ans=-1;
    for(auto it:A) digits(it);
    for(ll i=1;i<1024;i++){
        if(msk[i]==-1) continue;
        for(ll j=i+1;j<1024;j++){
            if(msk[j]==-1) continue;
            ll fl=0;
            for(ll k=0;k<10;k++){
                if((1<<k)&i){
                    if((1<<k)&j){
                        fl=1;
                        continue;
                    }
                }
            }
            if(fl) continue;
            ans=max(ans,msk[i]+msk[j]);
        }
    }
    return ans;
}


Microsoft โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

02 Nov, 11:19


https://www.linkedin.com/posts/piyush-kansal_hiring-activity-7258040817607454720-M-Wl?utm_source=share&utm_medium=member_android

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

01 Nov, 17:23


#include <bits/stdc++.h>
using namespace std;
unordered_map<string, long> g(vector<string>& w) {
    unordered_map<string, long> m;
    for (const string& x : w) {
        string y = x;
        sort(y.begin(), y.end());
        m[y]++;
    }
    return m;
}
vector<long> substitutions(vector<string>& w, vector<string>& p) {
    unordered_map<string, long> m = g(w);
    vector<long> r;
    for (const string& q : p) {
        stringstream ss(q);
        string z;
        long c = 1;
        while (ss >> z) {
            string t = z;
            sort(t.begin(), t.end());
            c *= m[t];
        }
        r.push_back(c);
    }

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

01 Nov, 17:02


Guys it will take time but it will happen!

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

01 Nov, 17:00


sort(memory.begin(), memory.end(), greater<int>());
long sum = 0, ans = 0;
for(int x: memory) {
sum += x;
ans += sum;
}
return ans;

Amazon โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

01 Nov, 16:55


int findmaximumPackages(vector<int>&arr)
{
    int n = arr.size();
    int mx = *max_element(arr.begin(), arr.end());
    mx = mx * 2;
    int res = 0;
    map<int, int>mp;
    for (auto it : arr) {
        mp[it]++;
    }
    for (int i = 1; i <= mx; i++) {
        int sm = 0;
        for (int j = 1; j <= (i - 1) / 2; j++) {
            sm += min(mp[j], mp[i - j]);
        }
        if (i % 2 == 0) {
            sm += (mp[i / 2] / 2);
        }
        res = max(res, mp[i] + sm);
    }
    return res;
}

Amazon โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

01 Nov, 16:53


Form Link: https://forms.gle/G1oFMrDmi8rpB8xv8

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

01 Nov, 16:51


https://www.linkedin.com/posts/jai-nijhawan_ios-internship-activity-7258094971960844291-igvF?utm_source=share&utm_medium=member_desktop

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

01 Nov, 16:50


https://www.linkedin.com/posts/-divya-porwal_internshipalert-techcareers-softwareengineering-activity-7258033652498866177-J7lu?utm_source=share&utm_medium=member_desktop

2025 and 2026 Batch

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

01 Nov, 16:48


IIT Ropar is conducting a special Entrance Test for AI Minor Degree

Test is on this Sunday:
https://bit.ly/test-ai-minor

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

28 Oct, 10:41


Internship opportunity for 2024,2025,2026 batch students

Company: Centre for Development of Telematics (C-D0T)

Eligibility: B.Tech/BE students (CS/EC) who have completed their second-year exams with a minimum CGPA of 7.0 or 70%.

Duration: Minimum 3 months to a maximum of 1 year. Stipend: 50,000/month + access to subsidized facilities.

Interview location: Bangalore/Delhi last date:31 Oct 2024.

Submit your CV and application form to [email protected]

Shortlisted candidates will be called for an interview.

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

28 Oct, 09:57


Syncron is hiring Machine Learning Engineer

For 2021, 2022 grads
Location: Bangalore

https://careers.syncron.com/jobs/4697093-machine-learning-engineer

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

27 Oct, 19:13


Moody's hiring for Software Engineer

0-3 year experience

Apply Here : https://careers.moodys.com/associate-software-engineer/job/28622865

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

27 Oct, 19:10


Propel hiring Software Developer

2025 batch passouts

Apply Here : https://talent.propelinc.com/jobs/Careers/26698000080989011/Fresher-2025-Batch-Software-Developer?source=CareerSite

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

27 Oct, 19:06


Winter Internships for college students :

1. FOSSEE  : https://fossee.in/winter-internship/2024
2. IIT Bhubaneshwar : https://webapps.iitbbs.ac.in/internship-application/,
3. NPTEL  : https://archive.nptel.ac.in/internship/
4. JNCASR  : https://www.jncasr.ac.in/winterschool/
5. ACM: https://india.acm.org/education/acm-india-winter-schools-2023-24 

ACM: Association for Computing Machinery
JNCASR: Jawaharlal Nehru Centre For Advanced Scientific Research

Apply for these asap.

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

27 Oct, 19:05


Clearfeed is hiring SWE intern

For 2025 grads
Location: Bangalore

https://clearfeed.keka.com/careers/jobdetails/798

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

27 Oct, 19:05


def getMaximumPartitions(performance):
    A = performance[0]
    for num in performance[1:]:
        A &= num
    if A > 0:
        return 1
    c = 0
    a = 0
    for num in performance:
        a = num if a == 0 else a & num
        if a == 0:
            c += 1
            a = 0
    return c

Amazon โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

27 Oct, 19:02


#include <iostream>
#include <vector>
#include <algorithm>
#include <numeric>

using namespace std;

int min_memory_after_deletion(vector<int>& a, int b) {
    int cd = accumulate(a.begin(), a.end(), 0);
    int n = a.size();
    
    if (b > n) {
        return cd;
    }
    
    int max_segment_sum = 0;
    int current_segment_sum = accumulate(a.begin(), a.begin() + b, 0);

    for (int i = 0; i <= n - b; ++i) {
        max_segment_sum = max(max_segment_sum, current_segment_sum);
        if (i + b < n) {
            current_segment_sum = current_segment_sum - a[i] + a[i + b];
        }
    }
    
    max_segment_sum = max(max_segment_sum, current_segment_sum);
    
    return cd - max_segment_sum;
}

Amazon โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

27 Oct, 18:59


#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
long maximizeTotalMemoryPoints(vector<int> memory) {
    sort(memory.begin(), memory.end(), & -> bool {
        return a > b;
    });
    ll total = 0;
    ll cs = 0;
    for(auto m : memory){
        cs += m;
        total += cs;
    }
    return total;
}


int main(){
    int n;
    cin >> n;
    vector<int> memory(n);
    for(int &x: memory) cin >> x;
    cout << maximizeTotalMemoryPoints(memory);
}

Amazon โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

27 Oct, 18:54


def func(logs,maxSpan):
  sigins = {}
  signouts = {}
  for i in logs:
    iid,time,string = i.split()
    if string == "sign-out":
      signouts[iid] = int(time)
    else:
      sigins[iid] = int(time)
  l = []
  for i,j in signouts.items():
    if i in sigins:
      time = j - sigins[i]
      if time <= maxSpan:
        l.append(int(i))
  l.sort()
  res = [str(i) for i in l]
  return res


Sign-in sign -out Logs โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

27 Oct, 12:13


Amazon sending interview mail โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

27 Oct, 12:10


News Corp is hiring for Graduate Engineer Trainee
Experience: 0 - 1 year's
Apply here:
https://dowjones.wd1.myworkdayjobs.com/News_Corp_Careers/job/Bangalore/Graduate-Engineer-Trainee_Job_Req_43522

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

27 Oct, 12:03


def getMaxEqualIndices(inv1, inv2):
    n = len(inv1)
    sinv1 = sum(inv1)
    sinv2 = sorted(inv2)
   
    prefixSum = [0] * (n + 1)
    for i in range(n):
        prefixSum[i + 1] = prefixSum[i] + sinv2[i]
   
    left = 0
    right = n
   
    while left < right:
        mid = (left + right + 1) // 2
        if mid < n:
            if prefixSum[mid] <= sinv1:
                left = mid
            else:
                right = mid - 1
        else: 
            if prefixSum[mid] == sinv1:
                left = mid
            else:
                right = mid - 1
   
    return left


Amazon โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

27 Oct, 12:01


def findminimumvariance(n, height):
    freq = {}
    mini = float('inf')
    for i in range(n):
        if height[i] in freq:
            s = freq[height[i]]
            sub = i - s + 1
            fir = height[s]
            cnt = height[s:i + 1].count(fir)
            var = sub - cnt
            mini = min(mini, var)
        freq[height[i]] = i
    if mini == float('inf'):
        return 0
    return mini

Amazon โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

27 Oct, 12:00


int cleanupDataset(string dataset, int x, int y){
    vector<int> F(26, 0);
    for(char ch : dataset) F[ch - 'a']++;
    int ans = 0;
    if(x <= y){
        int cnt = 0;
        for(int num : F) ans += x * (num >> 1) , cnt += num & 1;
        ans += y * (cnt >> 1);
    }
    else{
        priority_queue<int> pq;
        for(int num : F) if(num) pq.push(num);
        while(pq.size() > 1){
            int x1 = pq.top(); pq.pop();
            int x2 = pq.top(); pq.pop();
            int rem = min(x1, x2);
            ans += y * rem;
            if(max(x1, x2) - rem) pq.push(max(x1 , x2) - rem);
        }
        if(pq.size()){
            int rem = pq.top(); pq.pop();
            ans += x * (rem >> 1);
        }
    }
    return ans;
}


Amazon โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

27 Oct, 06:44


ACL Digital (An Alten Group Company) is hiring Freshers for Chennai Location.

Qualification - B.Tech/B.E-(CS, ECE, EEE) only

Experience 0-1 year

Mandatory skills - C, C++,embedded, linux, unit testing

Good to have - Python
Academics - above 70%

Interested candidates can share your resume to [email protected]

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

27 Oct, 06:40


Company Name: Palo Alto Network
Role: Software Engineer
Batch eligible: 2025 grads

Apply: https://jobs.paloaltonetworks.com/en/job/-/-/47263/71837933584

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

27 Oct, 04:36


#include <bits/stdc++.h>
using namespace std;

string nextBeautifulString(string s, int n, int k) {
    for (int i = n - 1; i >= 0; --i) {
        if (s[i] < 'a' + k - 1) {
            s[i]++;
            fill(s.begin() + i + 1, s.end(), 'a');
           
            for (int j = 1; j < n; ++j) {
                if (s[j] == s[j - 1]  (j > 1 && s[j] == s[j - 2])) {
                    if (s[j] < 'a' + k - 1) {
                        s[j]++;
                        fill(s.begin() + j + 1, s.end(), 'a');
                    } else {
                        return "-1";
                    }
                }
            }
           
            bool valid = true;
            for (int j = 1; j < n; ++j) {
                if (s[j] == s[j - 1]  (j > 1 && s[j] == s[j - 2])) {
                    valid = false;
                    break;
                }
            }
            if (valid) return s;
            else return "-1";
        }
    }
    return "-1";
}

int main() {
    int t;
    cin >> t;
    while (t--) {
        int n, k;
        string s;
        cin >> n >> k >> s;
       
        cout << nextBeautifulString(s, n, k) << endl;
    }
    return 0;
}


Beautiful Strings
Google โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

26 Oct, 18:46


Company: Google
Role: Associate Product Manager

Batch : 2024/2025 from a degree related to PM, CS, Maths or Data Science. 
The application starts on 28th of October.

Apply : https://www.google.com/about/careers/applications/jobs/results/124204114060944070-associate-product-manager-university-graduate-2025-start

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

26 Oct, 07:20


def getInaccurateProcesses(processOrder, executionOrder):
    class FenwickTree:
        def __init__(self, size):
            self.size = size
            self.tree = [0] * (size + 2) 

        def update(self, index, delta=1):
            while index <= self.size:
                self.tree[index] += delta
                index += index & -index

        def query(self, index):
            res = 0
            while index > 0:
                res += self.tree[index]
                index -= index & -index
            return res

        def range_query(self, left, right):
            if left > right:
                return 0
            return self.query(right) - self.query(left -1)

    n = len(processOrder)
    pid = {}
    for idx, process in enumerate(processOrder):
        pid[process] = idx

    ft = FenwickTree(n)

    inaccurate =0

    for process in executionOrder:
        index = pid[process]
        fti = index +1
        count = ft.query(fti -1)
        if count != index:
            inaccurate +=1
        ft.update(fti)
   
    return inaccurate


Amazon โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

26 Oct, 06:35


I'm rooting for your success more than you do...โ™ฅ๏ธ

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

26 Oct, 06:34


#include <iostream>
#include <vector>
#include <cmath>
using namespace std;
const int MOD = 1e9 + 7;
const int MAXN = 1e5 + 5;
int main() {
    int N;
    cin >> N;
    vector<int> squareFreeDivisorCount(N + 1, 0);
    long long count = 0;
    for (int i = 1; i <= N; ++i) {
        for (int j = i; j <= N; j += i) {
            int product = i * j;
            int root = sqrt(product);
            if (root * root == product) {
                if (i == j)
                    count = (count + 1) % MOD;
                else
                    count = (count + 2) % MOD;
            }
        }
    }

    cout << count << endl;
    return 0;
}


Square investment โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

26 Oct, 05:04


Experience: 0-1 years

Salary: โ‚น6.00 LPA

About Us:

Hummingbird Web Solutions Pvt Ltd specializes in Adobe Commerce services, building top-tier e-commerce solutions worldwide. We offer a supportive and growth-oriented work environment.

Role Highlights:

โ€ข Collaborate with engineering, product, and design teams on client websites

โ€ข Code with JavaScript, ReactJS, PHP, RequireJS, KnockOutJS, AlpineJS, and more

โ€ข Contribute to daily deployments, task management, and release support

โ€ข Share insights to foster innovation within the team

Eligibility:

โ—†Graduated in 2024 in CS, IT, Electronics, or related fields

Coding profile on LeetCode, CodeChef, or Codeforces

* Strong communication skills

Join us at Hummingbird Web Solutions! Apply now if you're ready to make an impact.

Kindly submit the given form to apply with us Link

https://lnkd.in/dBKCUsKd

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

26 Oct, 04:56


Interested candidates forward your resume to [email protected]

Contact:9790438392.

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

25 Oct, 21:56


def solution(S):
    r={'AB','BA','CD','DC'}
    s=[]
    for c in S:
        if s and s[-1]+c in r:
            s.pop()
        else:
            s.append(c)
    return ''.join(s)


American Express โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

25 Oct, 21:54


int best=0;
int dfs(TreeNode* root) {
   if(root==NULL)return -1;
   int left = dfs(root->left);
   int right = dfs(root->right);
   int res = root->val;
   if(left*right>=0 && left+right>=0) res+=left+right;
   best = max(best,res);
   return res;
}
int maxPerfectSubtree(TreeNode* root) {
   solve(root);
   return best;
}


American Express โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

25 Oct, 21:53


import java.util.*;
import java.io.*;

public class Main {
    static class Segment {
        int L;
        int R;
        int cost;
        Segment(int L, int R, int cost){
            this.L = L;
            this.R = R;
            this.cost = cost;
        }
    }
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        sc.nextInt(); // Read the '3' and ignore
        Segment[] segments = new Segment[N];
        for(int i=0;i<N;i++) {
            int L = sc.nextInt();
            int R = sc.nextInt();
            int cost = sc.nextInt();
            segments[i] = new Segment(L, R, cost);
        }
        Segment[] sortedByL = segments.clone();
        Arrays.sort(sortedByL, new Comparator<Segment>() {
            public int compare(Segment a, Segment b){
                if(a.L != b.L) return Integer.compare(a.L, b.L);
                return Integer.compare(a.R, b.R);
            }
        });
        Segment[] sortedByR = segments.clone();
        Arrays.sort(sortedByR, new Comparator<Segment>() {
            public int compare(Segment a, Segment b){
                if(a.R != b.R) return Integer.compare(a.R, b.R);
                return Integer.compare(a.L, b.L);
            }
        });
        long minCost = Long.MAX_VALUE;
        long minProduct = Long.MAX_VALUE;
        int r_ptr = 0;
        for(int i=0;i<N;i++) {
            Segment current = sortedByL[i];
            while(r_ptr < N && sortedByR[r_ptr].R < current.L){
                if(sortedByR[r_ptr].cost < minCost){
                    minCost = sortedByR[r_ptr].cost;
                }
                r_ptr++;
            }
            if(minCost != Long.MAX_VALUE){
                long product = minCost * (long)current.cost;
                if(product < minProduct){
                    minProduct = product;
                }
            }
        }
        if(minProduct != Long.MAX_VALUE){
            System.out.println(minProduct);
        }
        else{
            System.out.println(-1);
        }
    }
}


Zeta โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

25 Oct, 21:51


import java.util.*;
public class Main {
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int[] arr = new int[N];
        for(int i=0;i<N;i++) arr[i] = sc.nextInt();
        int k = sc.nextInt();
        Arrays.sort(arr);
        int left=0, right=N-1, moves=0;
        while(left <= right){
            if(arr[left] + arr[right] <=k) left++;
            right--;
            moves++;
        }
        System.out.println(moves);
    }
}


Zeta โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

25 Oct, 21:49


#include<iostream>
using namespace std;
int solve(vector<int>ribbons, int k)
{
    int low=0, high=*max_element(ribbons.begin(), ribbons.end());
    while(low<high)
    {      
        int mid=(low+high+1)>>1;
        int cnt=0;
        for(int r:ribbons)
            cnt+=r/mid;
           
        if(cnt<k)
            high=mid-1;
        else
            low=mid;
    }
    return low;
}

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

25 Oct, 21:47


#include <bits/stdc++.h>
using namespace std;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    
    int T;
    cin >> T;
    for(int test_case=1; test_case<=T; test_case++){
        int N;
        cin >> N;
        string S = "";
        cin>>S;
   
        vector<int> pre(2*N +1, 0);
        for(int i=1; i<=2*N; i++){
            if(S[i-1] == 'R'){
                pre[i] = pre[i-1] +1;
            }
            else{
                pre[i] = pre[i-1] -1;
            }
        }

        unordered_map<int, int> dp1,dp2;
        for(int i=0; i<=2*N; i++){
            int d = pre[i];
            if(i <= N){
                if(dp1.find(d) == dp1.end()){
                    dp1[d] = i;
                }
            }
            if(i >= N){
                if(dp2.find(d) == dp2.end() || i > dp2[d]){
                    dp2[d] = i;
                }
            }
        }

        int mx =0;
        for(auto &entry : dp1){
            int d = entry.first;
            if(dp2.find(d) != dp2.end()){
                int last = dp2[d] - entry.second;
                if(last > mx){
                    mx = last;
                }
            }
        }
        int ans = 2 * N - mx;
        cout << "#" << test_case << " " << ans << "\n";
    }
}

Samsung (R&D)โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

25 Oct, 21:46


SELECT NAME, SALARY
FROM EMPLOYEE
WHERE SALARY > 500
ORDER BY
    RIGHT(NAME, 3) ASC,      
    SALARY DESC,              
    ID ASC;

Employee Salaries โœ…
Spinny

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

25 Oct, 21:44


def ss(firstnum: str, secondnum: str, thirdnum: str) -> bool:
    target_sum = int(thirdnum)
    second_value = int(secondnum)
    if int(firstnum) + second_value == target_sum:
        return True
    for i in range(len(firstnum)):
        new_firstnum = firstnum[:i] + firstnum[i+1:]
        if new_firstnum and (new_firstnum[0] != '0'):
            if int(new_firstnum) + second_value == target_sum:
                return True
    return False

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

25 Oct, 20:43


Outlier is hiring AI Engineer

For 2023, 2024 grads
Location: Delhi

https://docs.google.com/forms/d/e/1FAIpQLSc2cX4Mt9ASxg9cDg3FHbdWzvDwc9svunZQnneHN1dwcYqi9Q/viewform?usp=sf_link

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

25 Oct, 19:14


https://app.flexiple.com/job-description/10321?utm_source=linkedin_flexiple_jobpost

Package only 35LPA only

Freshers needed

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

25 Oct, 19:14


https://www.linkedin.com/posts/ganesh-thik-4ba0b9b1_inferyx-hiring-activity-7253020503127326721-RuhN?utm_source=share&utm_medium=member_desktop

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

25 Oct, 19:10


Company Name: Microsoft
Role: Software Engineer
Batch eligible: 2024 grads (2025 can try but chances are low)

Apply: https://jobs.careers.microsoft.com/us/en/job/1778013/Software-Engineering-Full-Time-Opportunity

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

20 Oct, 18:17


๐Ÿš€ Hiring Freshers

Role: DevOps Intern / Junior DevOps Engineer at ReBid


๐Ÿ” What We're Looking For:
- Strong understanding of AWS โ˜๏ธ
- Linux expertise ๐Ÿง
- Experience with Docker & Kubernetes ๐Ÿณ
- Familiarity with CI/CD pipelines for continuous integration and deployment automation ๐Ÿ”„

โœจBonus Points if you have:
- Hands-on experience with Terraform or other Infrastructure as Code tools
- Knowledge of Ansible for configuration management
Experience

๐Ÿ“ฉ Send your resume to [email protected]

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

20 Oct, 18:17


Black Spectacles is Hiring for Full Stack Developer
Experience: 0 - 1 year's
Expected Stipend: $115,000 - $140,000/year
Apply now:
https://apply.workable.com/blackspectacles/j/B92816C182/

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

20 Oct, 18:14


https://jobs.siemens.com/careers/job/563156117078995?hl=en

Freshers with M. tech/B.Tech. in Electrical/Electrical & Electronics Engineering or Diploma in Electrical/Electrical & Electronics with relevant experience

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

20 Oct, 18:12


๐Ÿ“ŒSalescode.ai is Hiring Sofware Engineer Trainee

For 2023, 2024 grads
Location: Gurugram

๐Ÿ’ปApply: https://salescodeai.keka.com/careers/jobdetails/68945

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

20 Oct, 16:32


Flipkart is hiring for SDE ll & TL /EM roles

Min 3+ year experience required

Apply Form : https://forms.gle/wFGuTvFfCPXpGoPU6

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

20 Oct, 16:28


#include <stdio.h>
#include <limits.h> 
struct Classroom {
    int n;       
    int grades[103];
};

void maximum(struct Classroom obj) {
    int max_grade = INT_MIN;
    for (int i = 0; i < obj.n; i++) {
        if (obj.grades[i] > max_grade) {
            max_grade = obj.grades[i];
        }
    }
    printf("%d\n", max_grade);
}

void second_maximum(struct Classroom obj) {
    int max_grade = INT_MIN, second_max = INT_MIN;
   
    for (int i = 0; i < obj.n; i++) {
        if (obj.grades[i] >= max_grade) {
            second_max = max_grade;
            max_grade = obj.grades[i];
        } else if (obj.grades[i] > second_max && obj.grades[i] < max_grade) {
            second_max = obj.grades[i];
        }
    }

    if (second_max == INT_MIN) {
        printf("%d\n", max_grade);
    } else {
        printf("%d\n", second_max);
    }
}

void Find_Xor(struct Classroom obj) {
    int xor_result = 0;
    for (int i = 0; i < obj.n; i++) {
        xor_result ^= obj.grades[i];
    }
    printf("%d\n", xor_result);
}


Juniper โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

20 Oct, 16:27


#include <stdio.h>
struct CompanyProfile {
    char company[11];     
    int days_in_operation;
};

const char* oldest(struct CompanyProfile profiles[], int n) {
    int max_days = -1;
    const char* oldest_company = "";
   
    for (int i = 0; i < n; i++) {
        if (profiles[i].days_in_operation > max_days) {
            max_days = profiles[i].days_in_operation;
            oldest_company = profiles[i].company;
        }
    }
   
    return oldest_company;
}
float average_age(struct CompanyProfile profiles[], int n) {
    int total_days = 0;
   
    for (int i = 0; i < n; i++) {
        total_days += profiles[i].days_in_operation;
    }
   
    return (float)total_days / n;
}


Juniper (intern) โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

20 Oct, 16:26


#include <bits/stdc++.h>
using namespace std;

int countPowerNumbers(int l, int r) {
    vector<long long> pows;
    pows.push_back(0);
    pows.push_back(1);

    for (int p = 2; p < 25; p++) {
        long long num = 2;
        while ((long long)(pow(num, p) + 0.5) <= r) {
            pows.push_back((long long)(pow(num, p) + 0.5));
            num++;
        }
    }

    vector<int> ok(r + 1, 0);

    for (int i = 0; i < pows.size(); i++) {
        for (int j = 0; j < pows.size(); j++) {
            if (pows[i] + pows[j] <= r && pows[i] + pows[j] >= l) {
                ok[pows[i] + pows[j]] = 1;
            }
        }
    }

    for (int i = 0; i <= r; i++) {
        ok[i] += ok[i - 1];
    }

    return ok[r] - ok[l - 1];
}


Power Sum โœ…
Thoughtspot

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

20 Oct, 11:12


https://forms.gle/1UPA495i8FYY2guT7

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

20 Oct, 11:10


We are looking for applied science interns for 2025 in Amazon! If you are a strong candidate pursuing Ph.D. in reinforcement learning and deep learning. Please direct message me with your resume or send it to [email protected]! If you're in Seattle this week attending INFORMS annual meeting, let us have a chat!

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

20 Oct, 11:08


AspenTech Hiring !!
Role - C++ Developer
Exp - Fresher

https://aspentech.wd5.myworkdayjobs.com/aspentech/job/Bengaluru-India/C---Developers_R6599

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

20 Oct, 11:03


def ss(cipherCode):
    digits = list(str(abs(cipherCode)))
    digits.sort()
    if digits[0] == '0': 
        for i in range(1, len(digits)):
            if digits[i] != '0':
                digits[0], digits[i] = digits[i], digits[0]
                break
    d = int(''.join(digits))
    if cipherCode < 0:
        d = -d
    print(d)
cipherCode = int(input())
ss(cipherCode)


Wipro โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

20 Oct, 10:43


def p(packet):
    bitmask = 0
    for ch in packet:
        bitmask |= (1 << (ord(ch) - ord('a')))
    return bitmask

def ss(packets):
    n = len(packets)
    bitmasks = [p(p) for p in packets]
    lengths = [len(p) for p in packets]
    m = 0
    for i in range(n):
        for j in range(i + 1, n):
            if (bitmasks[i] & bitmasks[j]) == 0:
                m = max(m, lengths[i] * lengths[j])
    return m
num = int(input())
packets = [input() for _ in range(num)]
result = ss(packets)
print(result)


Wipro โœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

20 Oct, 07:45


#include <iostream>
#include <unordered_set>
#include <vector>
using namespace std;
vector<bool> solution(int n, vector<vector<int>>queens, vector<vector<int>>queries) {
    unordered_set<int> a, b, cs, d;
        for (const auto &queen : queens) {
        int r = queen[0], c = queen[1];
        a.insert(r);                
        b.insert(c);               
        cs.insert(r - c);      
        d.insert(r + c);       
    }
    vector<bool> r;
    for (const auto &query : queries) {
        int r_q = query[0], c_q = query[1];
        bool u = (a.count(r_q) > 0 || b.count(c_q) > 0 ||  cs.count(r_q - c_q) > 0 || d.count(r_q + c_q) > 0);
        r.push_back(u);
    }
    return r;
}

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

19 Oct, 19:08


def solve(K, T):
    MOD = 3001
    a = 1
    b = 2 
    for i in range(T):
        next_a = (K * b + a * a) % MOD
        next_b = (K * a + b) % MOD
        a, b = next_a, next_b
    return (a, b)

Simple recursive sequenceโœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

19 Oct, 19:06


#include <iostream>
#include <cmath>
#include <vector>
using namespace std;
const long long MOD = 1e9 + 7;
long long basicForm(long long A) {
    long long B = 1;
    for (long long i = 2; i * i <= A; i++) {
        if (A % i == 0) {
            B *= i;
            while (A % i == 0) {
                A /= i;
            }
        }
    }
    if (A > 1) {
        B *= A; 
    }
    return B;
}

long long countDivisors(long long n) {
    long long divisors = 1;
    for (long long i = 2; i * i <= n; i++) {
        if (n % i == 0) {
            int count = 0;
            while (n % i == 0) {
                n /= i;
                count++;
            }
            divisors *= (count + 1);
        }
    }
    if (n > 1) {
        divisors *= 2; 
    }
    return divisors;
}

long long findD(long long A) {
    long long B = basicForm(A);
    long long C = 1;
    for (long long i = 1; i * i <= B; i++) {
        if (B % i == 0) {
            C = (C * i) % MOD;
            if (i != B / i) {
                C = (C * (B / i)) % MOD; 
            }
        }
    }

    long long D = countDivisors(C);
    return D;
}

int main() {
    long long A;
    cin >> A;
     cout << findD(A) << endl;
    return 0;
}


converting numbersโœ…

๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€

19 Oct, 19:04


#include <iostream>
#include <vector>
#include <unordered_map>
#include <queue>
#include <climits>
using namespace std;

class Solution {
public:
    vector<vector<int>> constructGridLayout(int n, vector<vector<int>>& edges) {
    vector<vector<int>> adj(n);
        for(int i = 0; i < edges.size(); i++){
            adj[edges[i][0]].push_back(edges[i][1]);
            adj[edges[i][1]].push_back(edges[i][0]);
        }
        vector<int> dig(n,0);
        for(int i = 0; i < n; i++){
            for(auto val : adj[i]) dig[val]++;
        }

        int root = 0;
        for(int i = 0; i < n; i ++){
            if(dig[root] > dig[i]) root = i;
        }
        // cout<<root;
        vector<int> vis(n,0);
        vis[root] = 1;

        vector<int> row1;
        int x = adj[root][0];
        if(adj[root].size() == 2){
            if(dig[x] > dig[adj[root][1]]) x = adj[root][1];
        }
        row1.push_back(root);
        row1.push_back(x);
        vis[x] = 1;
        while(dig[root] != dig[x]){
            int d = 5;
            int k = INT_MAX;
            for(auto val : adj[x]){
                if(vis[val] == 0){
                    if(dig[val] < d) {
                        k = val;
                        d = dig[val];
                    }
                }
            }
            if(k == INT_MAX) break;
            vis[k] = 1;
            row1.push_back(k);
            x = k;
        }

        // for(auto val : row1) cout<<val<<" ";
        // cout<<endl;
        // for(auto val : vis) cout<<val<<" ";

        int c = row1.size();
        int r = n / c;

        vector<vector<int>> ans(r, vector<int>(c,0));
        for(int i = 0; i < c; i++) ans[0][i] = row1[i];
       
        for(int i = 1; i < r; i++){
            for(int j = 0; j < c; j++){
                for(auto val : adj[ans[i-1][j]]){
                    if(vis[val] == 0){
                        vis[val] = 1;
                        ans[i][j] = val;
                        break;
                    }
                }
            }
        }


        return ans;
    }
};


Backup Network โœ