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

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

Buy ads: https://telega.io/c/cs_algo
Download Telegram
#include <iostream>
#include <vector>
#include <unordered_map>
#include <algorithm>

using namespace std;

int solution(const vector<int> &m, const vector<int> &t, int mlimit) {
    unordered_map<int, vector<int>> have;
   
    for (int i = 0; i < m.size(); ++i) {
        have[t[i]].push_back(m[i]);
    }
    int r = 0;
   
    for (auto& p : have) {
        auto& v = p.second;
        sort(v.begin(), v.end()); 
       
        int i = 0, j = v.size() - 1;
        for (; i < j; ++r, --j) {
            if (v[i] + v[j] <= mlimit) {
                ++i;
            }
        }
        if (i == j) {
            ++r;
        }
    }
    return r;
}

Task Scheduling โœ…
๐Ÿ‘1
Cognizant are hiring for Subject Matter Expert- Foreclosure

Qualification: Any Graduate

Experience: 0 to 5 yrs.

Timings: US Shift

Location: Mumbai

Skillset: Foreclosure, US Mortgage

If you find yourself suitable for this role, please share your updated resume on swati.dansana@cognizant.com with the below details.

Total work experience:

Current CTC:

Expected CTC:

Notice period:
๐Ÿ‘1
ROLE Manager โ€“ Logistics and Customer Service. 
LOCATION-Chennai, Head Office
EXPERIENCE-6 months + experience in Logistics. Supply chain would also be relevant as long as candidate has knowledge of logistics
INDUSTRY-FMCG / Automobile / Manufacturing
CURRENT CTC-25 LPA + only
OFFERED CTC-15% - 20% Increase on CTC
QUALIFICATION-PG Diploma in Industrial Engineering โ€“ From IIM โ€“ Mumbai (Also called as NITIE - National Institute of Industrial Engineering)
2022 / 2023 batches only

If interested, kindly share your updated resumes on mitali.dey@cielhr.com
๐Ÿ“ŒWipro Recruitment of Freshers For Software Developer Role
Experience : Freshers

Skills:
- Strong Knowledge of various programming languages.
- Expertise in automation tools and systems.
- Good knowledge of software development life cycle.
- Strong debug and data analysis skills
๐Ÿ”— Apply Link -
https://careers.wipro.com/opportunities/jobs/3046326?lang=en-us&previousLocale=en-US
โค2๐Ÿ‘1
int solve(vector<int>& c, int t) {
    unordered_map<int, int> m;
    int p = 0;

    for (int x : c) {
        if (m.count(x - t)) {
            p += m[x - t];
        }
        if (m.count(x + t)) {
            p += m[x + t];
        }
        m[x]++;
    }

    return p;
}

Project Estimatesโœ…
๐Ÿ‘1
public static int findMagicValue(String input)
    {
        if (input == null || input.isEmpty())
        {
            return -1;
        }

        int magicValue = 1;
       

        for (char ch : input.toCharArray()) {
            if (Character.isLetterOrDigit(ch)) {
                int asciiValue = (int) ch;

                if (Integer.MAX_VALUE / magicValue < asciiValue) {
                    break;
                }

                magicValue *= asciiValue;
            }
        }

        return magicValue;
    }
#include <iostream>

using namespace std;

int main() {
    int num;
    cin >> num;

    while (num--) {
        int friends, choc;
        cin >> friends >> choc;

        if (choc % friends == 0) {
            cout << "Yes\n";
        } else {
            cout << "No\n";
        }
    }

    return 0;
}

Friends Birthday Party โœ…
#include <vector>
#include <algorithm>
#include <iostream>

using namespace std;

int solve(vector<int>& err, int p, int q) {
    make_heap(err.begin(), err.end(), less<int>()); 
    int base_line = 0;
    int operations = 0;

    while (err.front() > base_line) {
        base_line += q;
        pop_heap(err.begin(), err.end(), less<int>());
        int max_err = err.back();
        err.pop_back();
        err.push_back(max_err - (p - q));
        push_heap(err.begin(), err.end(), less<int>());
        operations += 1;
    }

    return operations;
}
๐Ÿ‘1
๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
Photo
public static long calculateMaximumProfit(int cost_per_cut, int metal_price, int[] lengths) {

        long maxProfit = 0;
        long curProfit = 0;
        int maxLength = 0;
        int totalRods = 0;
        int totalCuts = 0;
        Arrays.sort(lengths);
        for (int curLength : lengths) {
            maxLength = Math.max(maxLength, curLength);
        }
        for (int curLength = 1; curLength <= maxLength; curLength++) {
            int prevSum = 0;
            for (int length : lengths) {
                int cut = 0;
                int waste = 0;
                if (length % curLength == 0) {
                    cut = (length / curLength) - 1;
                } else {
                    cut = length / curLength;
                }
                waste = length % curLength;
                int profit = Math.max(prevSum, prevSum + (length * metal_price - cut * cost_per_cut - waste * metal_price));
                prevSum = profit;
            }

            curProfit = prevSum;
            maxProfit = Math.max(maxProfit, curProfit);
        }

        return maxProfit;
    }

Cutting metal surplus โœ…
opening for Management Trainee in Human Resource department with one of the leading API Pharmaceutical  manufacturing company based in Vikhroli, Mumbai
Note -Qualification โ€“ MBA-HR
Exp-0-1 yr

Interested candidates may share cv on jpun@sahajpharma.com
EY India is hiring ๐Ÿ“ข๐Ÿ“ข๐Ÿ“ข

We are looking for candidates for Mumbai location having 0-2 years of experience in "Internal Audit/ Concurrent Audit/Bank Audit" for Business Consulting Risk cluster.

Skills Required- Internal Audit/Concurrent Audit/Bank Audit

Location Mumbai

Qualification - Graduated/Post Graduate

Freshers are also encouraged to apply.

Interested candidates can email their CV with the subject line "Application for Concurrent Audit Mumbai" at keya.mahesh@in.ey.com