๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
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
#include <iostream>
#include <vector>
#include <string>

using namespace std;

int count_vowels(string str) {
    int count = 0;
    string vowels = "aeiou";
    for (char ch : str) {
        if (vowels.find(tolower(ch)) != string::npos) {
            count++;
        }
    }
    return count;
}

vector<string> determine_winner(vector<string> strings) {
    vector<string> winners;
    for (string str : strings) {
        if (count_vowels(str) == 0) {
            winners.push_back("Chris");
        } else {
            winners.push_back("Alex");
        }
    }
    return winners;
}. 

System and Strings
JPMC โœ…
int minimumKeypresses(string s) {
        unordered_map<char, int> counts;
        for (char ch : s) {
            counts[ch]++;
        }

        vector<int> frequencies;
        for (const auto& kvp : counts) {
            frequencies.push_back(kvp.second);
        }

        sort(frequencies.begin(), frequencies.end(), greater<int>());

        vector<int> remain {9, 9, 9};
        int i = 0, total = 0;
        for (int count : frequencies) {
            total += count * (i + 1);
            remain[i]--;
            if (remain[i] == 0) {
                i++;
            }
        }
       
        return total;
    }

Amazon โœ…
def processExecution(power, minPower, maxPower):
    result = []
    for min_p, max_p in zip(minPower, maxPower):
        count = sum(1 for p in power if min_p <= p <= max_p)
        power_sum = sum(p for p in power if min_p <= p <= max_p)
        result.append((count, power_sum))
    return result

Amazon โœ…
๐ŸšจLatest Job Openings๐Ÿšจ

Company โ€“ Pearson
Role โ€“ Data Engineer - Intern
Exp. โ€“ Fresher
Apply Here โ€“ https://www.linkedin.com/jobs/view/3884561204

Company โ€“ Sustainable Living Lab (SL2)
Role โ€“ AI/ML Curriculum Development Intern
Exp. โ€“ Fresher
Apply Here โ€“ https://internshala.com/internship/detail/work-from-home-ai-ml-curriculum-development-internship-at-sustainable-living-lab-sl21712557023?utm_source=cp_link&referral=web_share

Company โ€“ Learning Paths (The Bag)
Role โ€“ Data Analytics Intern
Exp. โ€“ Fresher
Apply Here โ€“ https://internshala.com/internship/details/data-analytics-internship-in-bangalore-at-learning-paths-the-bag1712400481?utm_source=cp_link&referral=web_share

Company โ€“ Jash Data Sciences
Role โ€“ Data Scientist
Exp. โ€“ 0-5 yrs
Apply Here โ€“ https://www.linkedin.com/jobs/view/3877095659
๐Ÿ‘2