๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
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
def solution(laps):
    drivers = {}
    eliminated = []

    for lap in laps:
        slowest = float('-inf')
        toRemove = []

        for info in lap:
            name, time = info.split()
            time = int(time)
           
            drivers[name] = min(drivers.get(name, time), time)
           
            if drivers[name] > slowest:
                slowest = drivers[name]
                toRemove = [name]
            elif drivers[name] == slowest:
                toRemove.append(name)
       
        eliminated.extend(sorted(toRemove))
        for name in toRemove:
            del drivers[name]

    return eliminated


Databrick โœ…
https://www.linkedin.com/jobs/view/4025861173

Voya India Hiring Trainee

1. Responsible to process participants/Plan level transactions

2. Will have to work closely with supervisors to ensure all transactions are processed accurately

3. Strict adherence non-disclosure of client information by preserving client confidentiality

4. Completing assigned responsibilities within the defined SLAs

Skills & Required profile

1. Should be a Graduate and not an Engineering/MCA graduate

2. Should have good communication and analytical skills

3. Should be a self-starter, proactive and target oriented

4. Good knowledge of MS Office applications

5. Should be flexible to work in night shifts and must extend when business required Employment type: Full time
๐Ÿ‘1
def solution(fish, baits):
    fish.sort(reverse=True)
    baits.sort(reverse=True) 
    cf = 0
    bu = [0] * len(baits)

    for f in fish:
        for i, bait in enumerate(baits):
            if bait < f and bu[i] < 3:
                cf += 1
                bu[i] += 1
                break

    return cf


Visa โœ…
๐Ÿ‘1