๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
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
๐ŸšจJOB OPENINGS FOR FRESHERS & EXPERIENCED CANDIDATES

Company: OpsFree
Role: Data Science Intern
Exp: Entry level, currently pursuing Master degree in  Computer Science, Data Science, Statistics, Mathematics, or a related field.
Apply here : https://in.indeed.com/jobs?q=data+science+internship&l=India&sc=0kf%3Ajt%28internship%29%3B&fromage=3&vjk=0ed44322ed9bc694

Company: Next Education
Role: Data Analyst
Exp: 1 yr
Apply here : https://in.indeed.com/jobs?q=data+analyst+intern&l=India&start=10&vjk=80ec33d9eefae892

Company: Data Science Wizards
Role: Data Science Intern
Exp: Fresher
Apply here : https://www.naukri.com/job-listings-intern-data-science-data-science-wizards-thane-0-to-1-years-040923501866?src=jobsearchDesk&sid=17034806598536455&xp=1&px=1&nignbevent_src=jobsearchDeskGNB

Company: Artha School of Entrepreneurship
Role: Data Analyst
Exp: Fresher
Apply here : https://www.linkedin.com/jobs/view/3792148862

Company: Milliman
Role: Trainee Data Engineer
Exp: Fresher
Apply here : https://www.linkedin.com/jobs/view/3789275187

Company: HERE Technologies
Role: GIS Data Engineer I
Exp: 2-4 yrs
Apply here : https://www.linkedin.com/jobs/view/3741142797

Company: PIplusPI
Role: Data Engineer
Exp: 1-2yrs
Apply here : https://www.linkedin.com/jobs/view/3689032088

Company: Itelligence Infotech
Role: Data Science
Exp: 0 - 3 years
Apply here : https://www.naukri.com/job-listings-data-science-subject-matter-executive-itelligence-infotech-navi-mumbai-maharashtra-pune-maharashtra-0-to-3-years-181223005169?src=jobsearchDesk&sid=17034806598536455_1&xp=4&px=1&nignbevent_src=jobsearchDeskGNB

Company: Estee Advisors
Role: Data Analyst
Exp: 0 - 3 years
Apply here : https://www.naukri.com/job-listings-hiring-for-data-analyst-role-estee-advisors-gandhinagar-gujarat-0-to-3-years-170821001935?src=jobsearchDesk&sid=17034806598536455_1&xp=13&px=1&nignbevent_src=jobsearchDeskGNB

Company: Rotex
Role: Data Analyst
Exp: 0 - 4 years
Apply here : https://www.naukri.com/job-listings-data-analyst-rotex-mumbai-pune-0-to-4-years-081223906875?src=jobsearchDesk&sid=17034806598536455_2&xp=16&px=2&nignbevent_src=jobsearchDeskGNB

ALL THE BEST๐Ÿ’™
int solve(vector<vector<int>> arr) {
    int n = arr.size();
    vector<vector<int>> dp(n, vector<int>(n));
    int maxi = 0;

    for(int i = 0; i < n; i++) {
        for(int j = 0; j < n; j++) {
            if(i == 0 || j == 0) {
                dp[i][j] = arr[i][j];
            } else if(arr[i][j] == 1) {
                dp[i][j] = min({dp[i-1][j], dp[i][j-1], dp[i-1][j-1]}) + 1;
            }
            maxi = max(maxi, dp[i][j]);
        }
    }

    return maxi;
}

IBMโœ…
Source : Hola
โค1
๐Ÿšจ Job Openings Update ๐Ÿšจ


Company โ€“ Bik
Role โ€“ Data Analyst
Exp. โ€“ 1 yr
Apply Here โ€“ https://www.linkedin.com/jobs/view/3783368548

Company โ€“ Syntasa
Role โ€“ Data Scientist
Exp. โ€“ 2yrs
Apply Here โ€“ https://www.linkedin.com/jobs/view/3788779191

Company โ€“ SatSure
Role โ€“ Data Analyst
Exp. โ€“ 2yrs
Apply Here โ€“ https://www.linkedin.com/jobs/view/3758178373

Company โ€“ Equifax
Role โ€“ Trainee - Data Scientist
Exp. โ€“ 0-1yr
Apply Here โ€“ https://www.linkedin.com/jobs/view/3781583165

Company โ€“ Figr
Role โ€“ Machine Learning Engineer Intern
Exp. โ€“ Fresher
Apply Here โ€“ https://www.linkedin.com/jobs/view/3784028540

Company โ€“ Unified Mentor Live
Role โ€“ Data Science intern
Exp. โ€“ Fresher
Apply Here โ€“  https://www.linkedin.com/jobs/view/3791697266

Company โ€“ Factacy.ai
Role โ€“ Data analyst intern
Exp. โ€“ Fresher
Apply Here โ€“ https://www.linkedin.com/jobs/view/3786194400

Company โ€“ MiStay - India's Largest Hourly Hotels
Role โ€“ Data Analyst intern
Exp. โ€“ Proven experience as a Data analyst
Apply Here โ€“ https://www.linkedin.com/jobs/view/3761411694

Company โ€“ Obvious Technology Inc.
Role โ€“ Machine Learning Engineer
Exp. โ€“ Masters in Machine Learning, Computer Science, Statistics, or a related field is preferred, ML,  Data visualization
Apply Here โ€“  https://www.linkedin.com/jobs/view/3780086692

Company โ€“ Deliveroo
Role โ€“ Data Scientist
Exp. โ€“ Exp. In BI tools, and ML pipelines
Apply Here โ€“ https://www.linkedin.com/jobs/view/3761927968
def matrixbit(passwords, common_words):
    result = []
    regexNum = re.compile(r'^\d+$')
    regexLower = re.compile(r'^[a-z]+$')
    regexUpper = re.compile(r'^[A-Z]+$')

    for password in passwords:
        isWeak = False

        if len(password) < 6:
            result.append("weak")
            continue

        if regexNum.match(password) or regexLower.match(password) or regexUpper.match(password):
            result.append("weak")
            continue

        for word in common_words:
            if word in password:
                result.append("weak")
                isWeak = True
                break

        if not isWeak:
            result.append("strong")

    return result

IBMโœ…
๐Ÿ‘1
Batch :2023/2024/2025 passouts

Looking for interns with good understanding of Dockers, deployments, Kubernetes, open-source ecosystem, data structures, and coding (Java and Go) to work on the CVEs.
If you are passionate about cloud-native technology and want to work in an environment that offers excellent opportunities to learn from senior mentors, please share your resume with me at megha@nirmata.com.
Batch :2023/2024/2025 passouts

Looking for interns with good understanding of Dockers, deployments, Kubernetes, open-source ecosystem, data structures, and coding (Java and Go) to work on the CVEs.
If you are passionate about cloud-native technology and want to work in an environment that offers excellent opportunities to learn from senior mentors, please share your resume with me at megha@nirmata.com.
๐Ÿ‘1