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