๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.61K subscribers
5.59K photos
3 videos
95 files
10.1K 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
Need Apprentice Trainee for Capitaโค๏ธโค๏ธโค๏ธ

Experience: 0 โ€“ 1 years

Qualification: 12th pass

Salary: 1.75 LPA

Date of Interview: 18th September โ€“ 20th September
Time: 11.30 AM โ€“ 5.30 PM

Address:

B-1, SEZ b Tower no. 8, Magarpatta, Pune.

Mumbai โ€“ Godrej & Boyce, Gate No 2, Plant, 6, Lal Bahadur Shastri Marg, near R-City Mall Vikhroli Bus depot, Vikhroli West, Mumbai, Maharashtra 400079.
https://jobs.amdocs.com/careers/job?pid=563430997179688&domain=amdocs.com

Amdocs Hiring Java Developer- Fresh Graduate (Year 2023 & 2024 Graduates only)

โ€ข    Bachelor's degree in Science/IT/Computer Science or equivalent
โ€ข    0-11 months work experience in Core Java (OMS, CRM, ARIC). With basic knowledge in Python, SQL, UNIX, Linux, Shell/ Perl scripting.
โ€ข    Open to Fresh Graduates (Year 2023 and 2024 only).
โ€ข    Local hiring only: Not open to Expat hiring.
โ€ข    Willing to work on a Dayshift, Hybrid set- up (Work from home + 3x per week work on site in BGC or in Ortigas).
โ€ข    With background and understanding in Software Development Life Cycle.
โ€ข    With knowledge in Cloud computing (AWS, Azure)- good-to-have.

Why you will love this job:
โ€ข    You will be challenged to design and develop new software applications.
โ€ข    You will have the opportunity to work in a growing organization, with ever growing opportunities for personal growth.
https://www.linkedin.com/jobs/view/4025505068

TechSopi Global Hiring Java Full Stack

We are looking for a motivated Java Developer to join our growing team and contribute to exciting projects.


Job role - Java FullStack Developer
Experience - Minimum 6 Months
Skills - Core Java, spring, springboot, Angular
Qualification - BCA/ MCA/ B.Tech (CS/ IT)
Passout Year - From 2021 year onwards
Job Type - Full Time
Work Mode - Work from Office (5 Days a week)
Location - Banipark (Jaipur)


If you are excited about this opportunity and meet the qualifications, please send your resume to diksha.khandelwal@techsopi.com
5. RagaAI Inc is looking for 3-4 interns who can work out of the Bangalore office. Folks with LLM experience in agentic application, evals and observability needed.
Mail from resume at rehan.asif@raga.ai, including the term "internship" in the subject.
sort(task.begin(), task.end());
multiset<int> s;
long long sum = 0;
int ans = 0;

for (int i = 0; i < n; i++) {
    sum += 1LL * task[i][1];
    s.insert(-task[i][1]);
    long long time = 2LL * task[i][0];
   
    while (!s.empty() && sum + time > 1LL * t) {
        sum += 1LL * (*s.begin());
        s.erase(s.begin());
    }
   
    ans = max(ans, (int)s.size());
}

return ans;

Hurry โœ…
def solve(S1, S2):
    L1 = len(S1)
    L2 = len(S2)
    result = []
   
    for i in range(L2):
        if S2[i] == 'T':
            result.append(S1)
        else:
            result.append('A' * L1)
   
    return ''.join(result)[:L1 + L2 - 1]


String generation โœ…
๐Ÿ‘1
#include <bits/stdc++.h>
using namespace std;

typedef long long ll;

ll solve(int n, int m, vector<ll> f, vector<ll> b) {
    vector<pair<ll, int>> v;
    for(int i=0; i<n+m; i++) {
        v.push_back({min(f[i], b[i]), f[i] <= b[i]});
    }

    sort(v.begin(), v.end());

    int s = 0, e = 0;
    ll cost = 0;
    for(int i=n+m-1; i>=0; i--) {
        if((v[i].second && s < n) || e == m) {
            s++;
            cost += f[i];
        } else {
            e++;
            cost += b[i];
        }
    }

    if(s < n || e < m) {
        return -1;
    }

    return cost;
}

int main() {
    int n, m;
    cin >> n >> m;
    vector<ll> f(n+m), b(n+m);
    for(int i=0; i<n+m; i++) {
        cin >> f[i];
    }
    for(int i=0; i<n+m; i++) {
        cin >> b[i];
    }

    cout << solve(n, m, f, b) << endl;

    return 0;
}

Hiring Drive โœ…
def solution(A, B):
    min_extra_chocolates = float('inf')
   
    upper_bound = B // A + 2
   
    for k in range(1, upper_bound + 1):
        A_plus_X = (B + k - 1) // k
        X = A_plus_X - A
       
        if X < 0:
            continue
       
        Y = k * (A + X) - B
       
        if Y < 0:
            continue
       
        min_extra_chocolates = min(min_extra_chocolates, X + Y)
   
    return min_extra_chocolates

Multiple โœ