๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.63K subscribers
5.61K photos
3 videos
95 files
10.6K 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
Stecktra Technologies Pvt. Ltd. is currently #hiring the #freshers for the position of Microsoft SOC Analyst (L1 level). Know anyone who might be interested?

Qualification: B.Tech/BE (strictly) (2025 pass outs are not eligible for this opportunity )

Interested candidates are kindly requested to share their updated resumes at nisha.das@stecktra.com

Desired Certifications: CEH, AZ-900

This entry-level position is open to freshers who possess a strong understanding of Azure cloud services and passion for cybersecurity.

Looking forward to your applications!
Scalex is looking for a motivated Java Developer (Fresher). Proficiency in Java programming language and Spring Boot framework. Solid understanding of SQL and relational database concepts. Experience working with MongoDB or other NoSQL databases. rupalig@scalextechnologies.com
class UserMainCode(object):
    @classmethod
    def theLastChocolate(cls, input1, input2):
        dp = [[0] * (input1 + 1) for _ in range(input1 + 1)]
        dp[1][1] = 1
       
        for i in range(2, input1 + 1):
            for j in range(1, i + 1):
                dp[i][j] += dp[i - 1][j - 1] if j - 1 >= 1 else 0
                dp[i][j] += dp[i - 1][j] if j <= i - 1 else 0
       
        return dp[input1][input2]. 

//   Amazon ml  THE LAST Chocolate
int gcd(int a, int b) {
    while (b != 0) {
        int t = b;
        b = a % b;
        a = t;
    }
    return a;
}

int calculatesun(int input1, int input2[]) {
    // Read only region end
    int N = input1;
    int max_so_far = input2[0];
   
    for (int i = 0; i < N; ++i) {
        max_so_far = std::max(max_so_far, input2[i]);
        input2[i] = gcd(input2[i], max_so_far);
    }
   
    std::sort(input2, input2 + N);
   
    int sum = 0;
    for (int i = 0; i < N / 2; ++i) {
        sum += gcd(input2[i], input2[N - 1 - i]);
    }
   
    return sum;
}

Sum in Array โœ…
Amazon ML