๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.57K subscribers
5.58K photos
3 videos
95 files
9.97K 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
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