๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
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
bool solve(vector<string>& w, string v) {
    unordered_set<string> ws(w.begin(), w.end());
    string wd = "";
    for (char c : v) {
        if (isupper(c)) {
            if (!wd.empty() && !ws.count(wd)) {
                return false;
            }
            wd = "";
        }
        wd += tolower(c);
    }
    return ws.count(wd);
}
Latest Hiring opportunities for Batches 2020/2021/2022/2023/2024/2025๐Ÿš€


1. Paytm Hiring for Java Developer
๐Ÿ”บ Batch : 2020 / 2021 / 2022
๐Ÿ”บ Location : Noida


๐Ÿ‘‰๐ŸปApply here - https://jobs.lever.co/paytmbank/5cfc8e7e-14f3-4cd2-9795-91f4c9c20400



2. Tata 1 Mg Hiring for SDE 1
๐Ÿ”บ Batch : 2023 / 2024
๐Ÿ”บ Location :Gurgaon


๐Ÿ‘‰๐ŸปApply here - https://1mg.darwinbox.in/ms/candidate/careers/a656584f8055e5


3. Trade Desk Hiring for Summer SDE Intern
๐Ÿ”บ Batch : 2025
๐Ÿ”บ Location : Bengaluru


๐Ÿ‘‰๐ŸปApply here - https://boards.greenhouse.io/thetradedesk/jobs/4150177007?gh_src=57a33adb7us



4. BloomBerg Hiring for SDE Intern
๐Ÿ”บBatch : 2023 / 2024 / 2025
๐Ÿ”บLocation : Bengaluru / Hyderabad / Gurgaon / Mumbai / Chennai
๐Ÿ”บCTC Stipend : 20 LPA K per month.


๐Ÿ‘‰๐ŸปApply here - https://careers.bloomberg.com/job/detail/118748?ittk=E1RNWE73BD


5.Nissan Hiring for SDE 1
๐Ÿ”บ Batch : 2022 / 2023 / 2024
๐Ÿ”บ Location : Trivandrum


๐Ÿ‘‰๐ŸปApply here - https://alliance.wd3.myworkdayjobs.com/en-US/nissanjobs/job/software-engineer-i_r00151957-1


6. Cadence Hiring for SDE Intern
๐Ÿ”บ Batch : 2024 / 2025
๐Ÿ”บ Location : Noida


๐Ÿ‘‰๐ŸปApply here - https://cadence.wd1.myworkdayjobs.com/en-US/External_Careers/job/Intern-Software-engineering_R44773


7. Google Hiring for Associate Product Manager
๐Ÿ”บ Batch : 2024
๐Ÿ”บ Location : Bengaluru


๐Ÿ‘‰๐ŸปApply here - https://www.google.com/about/careers/applications/jobs/results/100297584867713734-associate-product-manager-university-graduate-2024


8. HashiCorp Hiring for SDE Interm
๐Ÿ”บ Batch : 2024 / 2025
๐Ÿ”บ Location : Bengaluru


๐Ÿ‘‰๐ŸปApply here - https://www.hashicorp.com/career/5523956


9. Ride Cell Hiring for SDE Intern
๐Ÿ”บ Batch : 2024 / 2025
๐Ÿ”บ Location : Pune

๐Ÿ‘‰๐ŸปApply here - https://docs.google.com/forms/d/e/1FAIpQLScT2gdgW-LQMThkFGlhi6LI3lmJp127-TaSus1rWwpdI_g7sQ/viewform


10. Nvdia Hiring for SDE Intern
๐Ÿ”บ Batch : 2024 / 2025
๐Ÿ”บ Location : Pune


๐Ÿ‘‰๐ŸปApply here - https://nvidia.wd5.myworkdayjobs.com/en-US/NVIDIAExternalCareerSite/job/India-Pune/Software-Engineering-Intern_JR1974418
๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
Photo
#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <cassert>
using namespace std;

// Write your Student class here
class Student{
    private:int scores[5];
    public:int sum=0;
    public:
       void input()
        {
            for(int i=0;i<5;i++)
            {
                cin >> scores[i];
                sum+=scores[i];
            }
        }
        int calculateTotalScore(){
            return sum;
        }

};

int main() {
    int n; // number of students
    cin >> n;
    Student *s = new Student[n]; // an array of n students
   
    for(int i = 0; i < n; i++){
        s[i].input();
    }

    // calculate kristen's score
    int kristen_score = s[0].calculateTotalScore();

    // determine how many students scored higher than kristen
    int count = 0;
    for(int i = 1; i < n; i++){
        int total = s[i].calculateTotalScore();
        if(total > kristen_score){
            count++;
        }
    }

    // print result
    cout << count;
   
    return 0;
}
SELECT e.emp_name
FROM employee e
JOIN cooking c ON e.emp_id = c.emp_id
JOIN recipe r ON c.f_id = r.f_id
GROUP BY e.emp_id, e.emp_name
ORDER BY COUNT(DISTINCT r.ing_id) DESC
LIMIT 3;

Master chefโœ…
โ—๏ธ Accenture Mega Off Campus Drive Hiring 2022/2023 Batch | 4.61 LPA โ—๏ธ

๐Ÿ‘จโ€๐Ÿ’ปJob Role : Application Development Associate
๐ŸŽ“Qualification : B.E/B.Tech/M.E/M.Tech, MCA, M.Sc
๐ŸŽ–Batch : 2022,2023
๐Ÿ’ฐSalary : INR 4.61 LPA

โญ•๏ธ Apply Fast :
https://csalgo.us/2023/12/04/accenture-off-campus-drive-2023-2022-2023-batch-across-india-4-61-lpa/