๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.52K subscribers
5.56K photos
3 videos
95 files
9.69K 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
https://www.linkedin.com/posts/ishika-goel-943708182_google-forms-sign-in-activity-7264636187661725696-tFP8?utm_source=share&utm_medium=member_desktop

Exciting Onsite Drive at Park+ - Apply Now!

We are hosting an onsite recruitment drive this Saturday, November 23rd, 2024, and weโ€™re looking for talented B.Tech
candidates with at least 6 months of full-time experience for SDE-1/SDE-2 Backend Developer roles!

๐Ÿ”น Key Details:
Role: SDE-1/SDE-2 Backend Developer
Date: Saturday, November 23rd, 2024
Location: Park+ Office (Onsite only, no virtual rounds) (Address: 5th floor, Tower-A, Unitech Cyber Park, Durga Colony, Sector 39, Gurugram, Haryana 122022)
Eligibility: B.Tech
graduates with at least 6 months full-time experience in backend development

Application Deadline: Form closes on November 21st, 2024, 12:00 PM

๐Ÿ”น How to Apply:
Click on the link below to submit your application before the deadline!
Link: https://lnkd.in/gsjscnak


Shortlisted candidates will receive a time slot via email.
If you're available to come to the office and meet us in person this Saturday, don't miss this opportunity!

hashtag#Hiring hashtag#JobAlert hashtag#RecruitmentDrive hashtag#BackendDeveloper hashtag#SDE1 hashtag#SDE2 hashtag#OnsiteOpportunity hashtag#BTechJobs hashtag#TechJobs hashtag#ParkPlus hashtag#EngineeringJobs hashtag#JobOpportunity hashtag#CareerGrowth hashtag#ExperienceMatters
int kadanes(vector<int> vs){
    int n=vs.size();
    int maxsum=INT_MIN;
    int sum=0;
    for(int i=0;i<n;i++){
        sum+=vs[i];
        maxsum=max(maxsum,sum);
        if(sum<0) sum=0;
    }
    return maxsum;
}


int solve(vector<int> vs,int impactfactor){
    int maxsum=kadanes(vs);
    return maxsum*impactfactor;
}

Amazon โœ…
๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
Photo
long howManySwaps(vector<int> arr) {
    auto mergeAndCount = [](vector<int>& arr, int left, int mid, int right) -> long {
        vector<int> temp(right - left + 1);
        int i = left, j = mid + 1, k = 0;
        long swaps = 0;
        while (i <= mid && j <= right) {
            if (arr[i] <= arr[j]) {
                temp[k++] = arr[i++];
            } else {
                temp[k++] = arr[j++];
                swaps += (mid - i + 1);
            }
        }
        while (i <= mid) temp[k++] = arr[i++];
        while (j <= right) temp[k++] = arr[j++];
        for (int p = 0; p < temp.size(); p++) {
            arr[left + p] = temp[p];
        }

        return swaps;
    };
    function<long(vector<int>&, int, int)> mergeSortAndCount = [&](vector<int>& arr, int left, int right) -> long {
        long swaps = 0;
        if (left < right) {
            int mid = left + (right - left) / 2;
            swaps += mergeSortAndCount(arr, left, mid);
            swaps += mergeSortAndCount(arr, mid + 1, right);
            swaps += mergeAndCount(arr, left, mid, right);
        }
        return swaps;
    };
    return mergeSortAndCount(arr, 0, arr.size() - 1);
}


Wayfair โœ