๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
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
#include<bits/stdc++.h>
using namespace std;

int solve(vector<int>& t, int i) {
    if(i >= t.size()) return 0;
    int l = solve(t, 2*i + 1);
    t[i] += l;
    int r = solve(t, 2*i + 2);
    return t[i] + r;
}

void print(vector<int>& t, int i) {
    if(i >= t.size()) return;
    print(t, 2*i + 1);
    cout << t[i] << "\n";
    print(t, 2*i + 2);
}

int main() {
    string s;
    getline(cin, s);
    stringstream ss(s);
    vector<int> t;
    int n;
    while(ss >> n) {
        t.push_back(n);
    }
    solve(t, 0);
    print(t, 0);
    return 0;
}

Replace node value with sum of self and left subtree โœ…
๐Ÿ‘1
Grant Thornton is looking for candidates on consultant position who have  extensively worked in risk advisory domain (IA, IFC and SOP) during articleship and post qualification (0-2 yrs) experience for Gurgaon location.

Interested candidates can share CVs on himanshi.goyal@in.gt.com
Walk-In Drive for SOC Associate @ ECI!
 
If you are a technical graduate with knowledge of cyber security, we're looking for you! We invite you to attend walk-in drive at our Bangalore office.
 
Company: ECI
Address: ECI, Venkatadri IT Park, 4th Floor, Konappana Agrahara, Electronic City, Phase-1, Bangalore โ€“ 560100
Designation: SOC Associate
Date: 27th March 2024 (Wednesday)
Time: 12 PM IST โ€“ 6 PM IST
Qualification: Bachelor's or Master's degree in Cyber security/Computer science/IT - 2023 Graduate ONLY
 
Skills:
 โ€ข Good communication
 โ€ข Knowledge on SIEM, IDS/IPS, Firewall, VPN, EDR, AV and other security  products.
 โ€ข Knowledge on TCP/IP network traffic and event log analysis.
 
ECIโ€™s team is looking forward to meet you and know more about you ๐Ÿ˜Š
Please carry a copy of your updated resume.
Hiring for HR Executive profile.

Location - Gurgaon sector 67 (M3M Urbana Business Park)
Interview Mode : Face to Face Round
CTC:- Upto 3.6 LPA
Work from Office

We are looking out for HR Professionals for HR Executive/Sr. Executive Role which include 80% Talent Acquisition & 20% Operations.
You can also recommend someone known who can be a good in Recruitment and who has done intership in HR .

Hiring Eligibility:-
1. One should have at least 6months of HR experience.
2. Good Communication skills.
3. Immediate joining
4. Graduate

We are offering-
1. Fixed Salary Package
3. Attractive Appraisal Policy
4. Attractive Incentive Policy
6. Daily Training

If you are interested for the same then contact me at 8929643877 or mail your cv at anuradha.singh@squareyards.co.in
def max_units(boxes, units_per_box, truck_size):
    products = list(zip(units_per_box, boxes))
    products.sort(reverse=True)
   
    max_units = 0
    for units, boxes in products:
        if truck_size >= boxes:
            max_units += units * boxes
            truck_size -= boxes
        else:
            max_units += units * truck_size
            break
    return max_units

IBMโœ…
๐Ÿ‘2๐Ÿ‘Ž2