๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.6K 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
HCLTech Mega Walk-in Drive for Software Engineer/Software Developer Role in Noida and Chennai.

HCLTech is looking for experienced professionals with 6 to 24 months of industry experience in multiple domain.

Walk-In Details โ€“

Noida Address:
Address : A8/9,Sector-60 ,HCL Technologies, Noida
Date : 18th May,2024
Time : 10:00 AM onwards

Chennai Address:
Address : Elcot - SEZ, Tower 3, HCL Technologies Ground Floor (Old Cafe), Chennai, Sholinganallur - Medavakkam High Road, Shollinganallur 600119
Date : 18th May,2024
Time : 10:00 AM onwards

Click here to apply : https://forms.office.com/pages/responsepage.aspx?id=N-edGDrJWk-LaG9MqZQZEn_4YzJg3wtMqTZGj64AarhUQjBHMEE4SkJLUTJIOThJT0RHNDdFWkozMC4u

Job Details:-
Job Title: Software Engineer/Software Developer
Skill - SAP ABAP, Oracle PL/SQL,. NET , JAVA (Candidates with Industry experience in these domains only would be eligible)
Education Background: Any graduate
Graduation Batch : 2021-2023
Work Experience: 6 to 24 months (relevant project experience with an organization)
CTC Offered โ€“ 4.5 LPA to 6 LPA
Location: PAN India
Documents to bring along with you
Resume with photo attached.
10th, 12th ,UG/PGโ€“ original mark sheets and Xerox
Aadhar Card and Pan card hardcopy and original (mandatory)

Please Note : **Do not carry any Laptop, pen drive or any storage devices in the Office premises. Freshers are not eligible for this opening.
**Candidates who have already appeared for this opening on previous drive i.e. 4th  May & 11th May will not be eligible for the process.
โค1๐Ÿ‘1
For existing and new followers of this channel, please react with a '๐Ÿ‘' or 'โ™ฅ๏ธ' for the job postings that you're applying for the openings posted in this channel.

This gives me an idea of the number of relevant postings for this channel members! So that I can post more similar opportunities โœŒ๏ธ

All the best for your career โค๏ธ
โค2
#include<bits/stdc++.h>
using namespace std;

vector<int> rc;
vector<vector<int>> adj;
vector<int> seq;

void dfs(int node) {
    if(adj[node].size() > 0) dfs(adj[node][0]);
    seq.push_back(rc[node]);
    if(adj[node].size() > 1) dfs(adj[node][1]);
}

int main() {
    int rCount;
    cin >> rCount;
    rc.resize(rCount);
    for(int i=0; i<rCount; i++) cin >> rc[i];
    int cRow, cCol;
    cin >> cRow >> cCol;
    adj.resize(rCount);
    for(int i=0; i<cRow; i++) {
        int u, v;
        cin >> u >> v;
        adj[u].push_back(v);
    }
    int rM;
    cin >> rM;
    dfs(0);
    cout << seq[rM-1] << endl;
    return 0;
}

Restaurant
Flipkart โœ…
#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