๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
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
Wipro is fueling growth to its practice and scouting energetic MBA Finance Freshers who have zeal to contribute to the vision of the firm. Please send us your confirmation and resume if in case you are interested for the role.

Please find below the details :

Experience Required - Fresher - 6 Months
Education - MBA Finance / Risk Management /
Level - Management Trainee
Location - Gurugram
Joining - Immediate
Shifts - UK Shifts / US shifts

Interested candidates can share their CV at Jatin.sharma5@wipro.com
int solve(vector<int> sec_values, string s){
    vector<int> aux;
    for(char &c: s)
        aux.push_back(sec_values[c-'a']);
    sort(aux.begin(), aux.end());
    int sum = 0;
    for(int i=0; i<aux.size()-1; i++)
        sum+= abs(aux[i+1]-aux[i]);
    return sum;
}

Security Valuesโœ…
Adobeshecodes
๐Ÿ‘Ž4
def squaredSum(arr):
    max_sum = float('-inf')
    current_sum = 0
    for num in arr:
        current_sum = max(0, current_sum + num) 
        max_sum = max(max_sum, current_sum ** 2)
    return max_sum

Squared Sum โœ