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

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

Buy ads: https://telega.io/c/cs_algo
Download Telegram
Graduate Engineer Trainee to join the Liugong India for PAN India. He must be a Graduate from Mechanical- Passout. Freshers can apply.

A previous internship or project related to
Mechanical will be preferred. Must be willing to relocate anywhere in India

Interested candidate can share their CV at malvika.jain@liugong.com
๐ŸŒŸ Exciting Internship Opportunity at EY! ๐ŸŒŸ

Are you a motivated student looking to gain valuable experience in recruitment? Join EY as a pro-bono Intern and be part of our dynamic recruitment team!

Criteria:
- Must be from a reputed college
- Achieved 75% and above in 10th, 12th, and UG/PG (aggregate excluding last semester)
- No backlogs
- Willing to work from EY Noida office
- Available to start immediately

Please note that this is a pro-bono internship and does not guarantee any work opportunity. It's a chance to gain hands-on experience in recruitment at one of the world's leading firms.

If you meet the criteria and are ready to kickstart your career journey with EY, share your resume at payal.nagpal@in.ey.com. Don't miss out on this fantastic opportunity to learn and grow with us!
๐ŸŒŸ Exciting Opportunity at Xceedance! ๐ŸŒŸ

Are you a fresh postgraduate looking to kickstart your career in underwriting? Xceedance is hiring Underwriting Analysts in Gurgaon/Noida!

Required Skill Sets:
- Fresh postgraduates are welcome to apply
- Postgraduates in Economics, Mathematics, and Statistics domain are preferred

If you're ready to embark on a rewarding journey in underwriting and have the required skills, don't miss out on this opportunity!

Feel free to connect or WhatsApp your resume to 7289907457 / 7678424115.

Join us at Xceedance and take the first step towards a successful career in underwriting
#include <bits/stdc++.h>
using namespace std;

typedef long long ll;

ll solve(int n, int m, vector<ll> f, vector<ll> b) {
    vector<pair<ll, int>> v;
    for(int i=0; i<n+m; i++) {
        v.push_back({min(f[i], b[i]), f[i] <= b[i]});
    }

    sort(v.begin(), v.end());

    int s = 0, e = 0;
    ll cost = 0;
    for(int i=n+m-1; i>=0; i--) {
        if((v[i].second && s < n) || e == m) {
            s++;
            cost += f[i];
        } else {
            e++;
            cost += b[i];
        }
    }

    if(s < n || e < m) {
        return -1;
    }

    return cost;
}

int main() {
    int n, m;
    cin >> n >> m;
    vector<ll> f(n+m), b(n+m);
    for(int i=0; i<n+m; i++) {
        cin >> f[i];
    }
    for(int i=0; i<n+m; i++) {
        cin >> b[i];
    }

    cout << solve(n, m, f, b) << endl;

    return 0;
}

Hiring Drive โœ…
int maxBalancedShipments(vector<int>&a) {
   
    int n=a.size();
    int ans=0;
    int prev=-1;
    bool f=0;
    for(int i=n-1;i>=0;i--)
    {
        if(prev==-1) { prev=a[i]; continue;}
        if(a[i]>prev) { f=1; ans++; prev=-1;}
        else if(f) prev=a[i];
    }
    return ans;
}

Multiple delivery center
Amazon โœ…
๐Ÿ‘1
We are looking for an MBA Fresher specialization into Finance & Accounting with an excellent communication & Interpersonal skill.

Flexible to work in a US shift with Sat-Sun fixed off.
Job Location - Ghansoli, Navi Mumbai.
Compensation depends on market standard.

Interested candidate's email: ProtisthaP@hexaware.com with a subject line of "Job Application for MBA fresher".
๐Ÿ‘1
๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
Photo
#include <string>
#include <vector>

using namespace std;

const int MX = 26;

void cnt(const string& s, vector<int>& f, int l) {
    for (int i = 0; i < l; i++) {
        f[s[i] - 'a']++;
    }
}

bool pal(const vector<int>& f, int l) {
    int odd = 0;
    for (int i = 0; i < MX; i++) {
        if (f[i] % 2 != 0) {
            odd++;
        }
    }
    if (l % 2 == 0) {
        if (odd > 0) {
            return false;
        } else {
            return true;
        }
    }
    if (odd != 1) {
        return false;
    }
    return true;
}

string oddAndRem(vector<int>& f) {
    string o = "";
    for (int i = 0; i < MX; i++) {
        if (f[i] % 2 != 0) {
            f[i] -= 1;
            o += i + 'a';
            return o;
        }
    }
    return o;
}

string encPwd(const string& pwd) {
    string s = pwd;
    int l = s.size();
    vector<int> f(MX, 0);
    cnt(s, f, l);
    if (!pal(f, l)) {
        return "No Palindromic String";
    }
    string odd = oddAndRem(f);
    string front = "";
    string rear = " ";
    for (int i = 0; i < MX; i++) {
        string temp = "";
        if (f[i] != 0) {
            char ch = i + 'a';
            for (int j = 1; j <= f[i] / 2; j++) {
                temp += ch;
            }
            front += temp;
            rear = temp + rear;
        }
    }
    return front + odd + rear;
}

Palindromic Password โœ…
public static boolean check(long s, long dis, long dur) {
        return (18 * dis) % (10 * s * dur) >= (5 * s * dur);
    }

    public static int solve(List<Integer> a) {
        int ans = 100;
        int n = a.size();
        for (int i = 0; i < n; i += 2) {
            if (check(ans, a.get(i), a.get(i + 1))) {
                ans--;
                i = -2;
            }
        }
        return ans;
    }

Cruise Control โœ…
Fresher...!!

Company Name-Ramy Infotech Pvt Ltd.
Qualifications : BCA/B.Tech/MBA/MCA
Position : Business Development Executive /Technical Recruiter
Location : Noida Sector 62, Uttar Pradesh
Job Type : Full-time
Shift : Night
Timing : 7:00 PM to 4:30 AM
5 Days working

Looking forward to connect with the TPOs and Placement cells of Colleges and Institutes who can provide us candidates with BCA/B.Tech/MCA background for Noida location.

Interested universities/ colleges TPO and Placement cells are requested to share their details in a comment or can reach to me at tanya@ramyinfotech.com/hr@ramyinfotech.com /+918700758012