๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.57K subscribers
5.58K photos
3 videos
95 files
9.94K 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
Godrej Infotech Ltd is going to conduct a Recruitment Drive for B.Tech 2023 Freshers.

Drive Date- 4th Jan'2024
Location - Godrej Bhavan, Sec V, Saltlake, Kolkata
Position- Software Development Trainee

Criteria-
B.Tech 2023 Passout (CSE, IT & ECE)
No Year Gaps
70% Marks through out (10th, 12th, Diploma & Graduation)

I would request the Interested Candidates to share your CVs to below mail Id and contact the below given number.

Email-
sankalan@godrej.com
๐Ÿ‘Ž1
def subsetA(arr):
    arr.sort(reverse=True)
    subset_a = []

    sum_a = 0
    sum_b = 0

    for num in arr:
        if sum_a <= sum_b:
            subset_a.append(num)
            sum_a += num
        else:
            sum_b += num

    return sorted(subset_a)

Python 3โœ…
Array subset
๐Ÿ‘Ž1