๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.63K 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 <bits/stdc++.h>
using namespace std;

void pop_front(vector<int> &v) {
    if (v.size() > 0) {
        v.erase(v.begin());
    }
}

vector<int> helper(vector<int> nums, int c_len) {
    vector<int> ans;
    int In = nums.size();
    for(int i = 0; i < In; i++) {
        while(ans.size() > 0 && ans.back() < nums[i] && ((In - i) > (c_len - ans.size()))) {
            ans.pop_back();
        }
        if(ans.size() < c_len) {
            ans.push_back(nums[i]);
        }
    }
    return ans;
}

vector<int> solve(vector<int> nums1, vector<int> nums2, int k) {
    int l1 = nums1.size();
    int l2 = nums2.size();
    vector<int> rs;
    for (int s1 = max(0, k - l2); s1 <= min(k, l1); s1++) {
        vector<int> p1, p2;
        p1 = helper(nums1, s1);
        p2 = helper(nums2, k - s1);
        vector<int> temp;
        for (int j = 0; j < k; j++) {
            vector<int> temp2 = max(p1, p2);
            int fr = temp2.front();
            if (p1 > p2) {
                pop_front(p1);
            } else {
                pop_front(p2);
            }
            temp.push_back(fr);
        }
        rs = max(rs, temp);
    }
    return rs;
}

int main() {
    int n;
    cin >> n;
    vector<int> arr1(n);
    for(int i = 0; i < n; i++) {
        cin >> arr1[i];
    }
    int m;
    cin >> m;
    vector<int> arr2(m);
    for(int i = 0; i < m; i++) {
        cin >> arr2[i];
    }
    int k;
    cin >> k;
    vector<int> v = solve(arr1, arr2, k);
    for(int i = 0; i < v.size(); i++) {
        cout << v[i] << " ";
    }
    return 0;
}

University โœ…
Flipkart
#include <bits/stdc++.h>
using namespace std;

vector<string> fep(unordered_map<string, vector<string>>& g, string s) {
    vector<string> st = {s};
    deque<string> p;
    while (!st.empty()) {
        string u = st.back();
        if (g[u].size() > 0) {
            string v = g[u].front();
            make_heap(g[u].begin(), g[u].end());
            pop_heap(g[u].begin(), g[u].end());
            g[u].pop_back();
            st.push_back(v);
        } else {
            p.push_front(st.back());
            st.pop_back();
        }
    }
    vector<string> result(p.begin(), p.end());
    return result;
}

int main() {
    int n, m;
    cin >> n >> m;
    unordered_map<string, vector<string>> g;
    set<string> ads;
    for (int i = 0; i < n; i++) {
        string a, b;
        cin >> a >> b;
        g[a].push_back(b);
        ads.insert(a);
        ads.insert(b);
    }
    string S = "ABC";
    vector<string> p = fep(g, S);
    for (int i = 0; i < p.size(); i++) {
        cout << p[i] << " ";
    }
    return 0;
}

Media โœ…
Flipkart
Company โ€“ Fluor Corporation
Role โ€“ Data Scientist
Exp. โ€“ Fresher

Responsibilities โ€“
Responsibilities of the data scientist include data processing, performing descriptive analyses and performing predictive modeling. These performed analyses will be used for data exploration as well as for independent analyses. This position has a deep understanding of processes and systems to extract knowledge or insights from data in various forms, either structured or unstructured or assigned.

Skills โ€“
โ€ข  Programming knowledge in Python and R, D3 is preferred but not required.
โ€ข  Masterโ€™s degree in Data Science, Mathematics, Applied Mathematics, Statistics, Applied Statistics, Econometrics, Engineering or related discipline.

Apply Here โ€“ https://www.linkedin.com/jobs/view/3918177025
๐ŸšจLATEST JOB OPENING UPDATE๐Ÿšจ

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

Company โ€“ IYCWorld
Role โ€“ Business Analyst Internship
Exp. โ€“ Fresher
Apply Here โ€“ https://internshala.com/internship/details/business-analyst-internship-in-noida-at-iycworld1715757976?utm_source=cp_link&referral=web_share

Company โ€“ mCaffeine
Role โ€“ Data Analyst
Exp. โ€“ Fresher
Apply Here โ€“ https://www.linkedin.com/jobs/view/3924974321


Company โ€“ Exponent Energy
Role โ€“ Data Engineer
Exp. โ€“ Fresher
Apply Here โ€“ https://www.linkedin.com/jobs/view/3924960754

Company โ€“ Isourse
Role โ€“ AI/ML Engineer Internship in Delhi
Exp. โ€“ Fresher
Apply Here โ€“ https://www.linkedin.com/jobs/view/3925223971

Company โ€“ LSEG (London Stock Exchange Group)
Role โ€“ Junior Data Scientist
Exp. โ€“ Fresher
Apply Here โ€“ https://www.linkedin.com/jobs/view/3921628501
๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
Photo
Walk-in drive at AXA XL, Gurgaon for the role mentioned below, details of which are provided:

Date & Day - 21st & 24th (Tuesday & Friday)
Timings - 10.00 AM to 2.00 PM
Address - 14th Floor, World Tech Park, Block B2, (โ€œSEZ Unit-1โ€) DLF
IT/ITES SEZ, Sector 30, Silokhera, Gurgaon
Docs to Carry - 1 Updated Resume, Passport Size Photo, Aadhar Card.
Contact Person: Aich, Amarjit & Hina Karmarkar,

DISCOVER your opportunity -
Executive (with 1-3 years of experience) & Sr Associate (with 3-5 years of experience).
Preparation of Indirect tax returns for Insurance Premium Taxes (IPT), Value Added Tax (VAT) and GST returns, and other para-fiscal tax returns.
Preparation of reconciliations for tax accounts.
Support the team in ad-hoc project requests.
Misc other projects/assignments as needed including tax research.
Great MS Excel knowledge. Good written and verbal communication skills. Preparation of reconciliation for tax accounts.
This is an excellent opportunity to work in Tax team. Over time, the candidate will get understanding of an Insurance/Reinsurance Industry and preparation of tax returns, tax payments, journal posting and filing of returns.

FIND your future!
AXA XL, the P&C and specialty risk division of AXA, is known for solving complex risks. For mid-sized companies, multinationals and even some inspirational individuals we donโ€™t just provide re/insurance, we reinvent it.

NOTE: A 6-month cooling period applies for re-application. If you've participated in our recruitment process in the last 6 months, we appreciate your interest but kindly refrain from re-applying. Thank you for your understanding.

๐Ÿ”— *Click Here* To register for the Walk in Drive, simply use the QR code provided in the post.

https://forms.office.com/pages/responsepage.aspx?id=x8q3U74U1Ea-Q_KtkkTZAU7Ov0Fjy8VHrCsLRf2bpmRUMEw2TElNTVVVVTBVSVc5UEhLRkw2UVkxVi4u
โค1
FresherOpportunityAlert

Signals And Systems hiring Engineer Trainee - Walk in Interview (Fresher)

Strictly Candidate from BE -EC/EEE/IE only can WalkIn.

Walk-in: Time and Venue
17th May - 19th May , 10.00 AM - 12.30 PM
Signals & Systems (India) Pvt.Ltd. 15 / D19, IIIrd Main Road, SIPCOT IT Park, Siruseri, OMR, Chennai - 603 103, India.
Contact - Venkaatesh S V ( 9500097803 )
Data Analyst Internship Opportunity at SpareProvider.com
Note : Only College Students can apply
No of Vacancies: 5
Location: Remote
Send your Resume: kapil@spareprovider.com

Requirements: Bachelor's degree in a related field, proficiency in Excel, SQL, and Python/R preferred. Only College Students can apply.

Join SpareProvider.com as a Data Analyst Team ! We offer remote work, competitive pay, and growth opportunities.
๐Ÿ‘1