๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
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
We're Hiring! Machine Learning Interns at Nurix Labs

Are you passionate about the future of artificial intelligence and eager to gain hands-on experience at a well-funded, early stage startup? Nurix Labs is looking for a talented Machine Learning Interns to join our growing team!

About Nurix Labs
Nurix Labs is building cutting-edge generative AI solutions that will redefine what's possible with artificial intelligence. Our mission is to transform the way enterprises work with Generative AI. We're assembling the best AI team in the country to work on some of hardest problems.

The Role
As a Machine Learning Intern at Nurix Labs, you'll have the opportunity to:
- Work closely with our world-class AI researchers and engineers
- Contribute to the development of our core machine learning models and algorithms
- Experiment with the latest AI techniques and tools
- Gain exposure to the full machine learning lifecycle from data preprocessing to model deployment
- Collaborate with cross-functional teams in product, engineering, and design
- Potentially have your work featured in our AI models and products


What We're Looking For
- Currently pursuing a Bachelor's or Master's degree in Computer Science, Machine Learning, Statistics, or a related technical field
- Strong programming skills in Python and experience with machine learning frameworks like PyTorch or TensorFlow
- Familiarity with machine learning fundamentals including supervised/unsupervised learning, neural networks, and natural language processing
- Excellent analytical and problem-solving abilities
- Passion for the field of artificial intelligence and a desire to push the boundaries of what's possible
- Ability to work independently and as part of a team


Why Join Nurix Labs?
- Be part of a mission-driven company with a bold vision for the future of AI
Work alongside a talented, passionate team of AI experts and innovators
- Gain hands-on experience at an early stage startup
- Competitive compensation
- Flexible work environment

If you're excited about the opportunity to make a real impact in the world of AI, we'd love to hear from you! Reach out to us at [careers@nurixlabs.com] to learn more. This is a 6 months internship only.
๐Ÿ‘1
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 โœ