๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.52K subscribers
5.55K photos
3 videos
95 files
9.64K 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
struct Node {
    int val;
    Node* left;
    Node* right;
    Node(int val) : val(val), left(NULL), right(NULL) {}
};

Node* expand(Node* root) {
    if(root->left == NULL && root->right == NULL) {
        root->left = new Node(root->val);
        root->right = new Node(root->val);
    } else {
        if(root->left != NULL) root->left = expand(root->left);
        if(root->right != NULL) root->right = expand(root->right);
    }
    return root;
}

void print(Node* root) {
    if(root == NULL) return;
    cout << root->val << " ";
    print(root->left);
    print(root->right);
}
def count_substring_words(s):
    n = len(s)
    unique_words = set()

    for i in range(n - 2):
        substring = s[i:i+3]
        unique_words.add(substring)

    return len(unique_words)

Python 3โœ…
class UserMainCode(object):

    @classmethod
    def strongString(cls, input1, input2):
        n = len(input2)
        min_strings = []

        for i in range(min(input1, n)):
            distribution = [''] * input1
            for j in range(n):
                distribution[j % input1] += input2[j]

            min_string = min(distribution)
            min_strings.append(min_string)

        result = max(min_strings)
        return result


Game of String Distribution โœ…
int maxSubjectsNumber(vector<int> answered, vector<int> needed, int q) {
int n=answered.size();
vector<int>L;
int c=0;
for(int i=0;i<n;i++)
{
    int x=needed[i];
    int y=answered[i];
    if(x>y)
    L.push_back(x-y);
    else
    c++;
}
sort(L.begin(),L.end());
int p=q;
for(int i=0;i<L.size();i++)
{
    int x=L[i];
    if(p<x)
    break;
    p-=x;
    c++;
}
return c;
}
int solve(int N, vector<int> A, int T) {
    int xa = 0;
    for(int i=0; i<N; i++) {
        xa ^= A[i];
    }
    int d = xa ^ T;
    if(d == 0) return 0;
    int ops = 0;
    while(d > 0) {
        ops += d & 1;
        d >>= 1;
    }
    return ops;
}

Flip or flop โœ…
Pivotree are looking to onboard Freshers (BSc/B.E /B.Tech) 2023 passout.
Office Location - Bangalore
Eligibility Criteria -
75% & above throughout 10th, 12th & Graduation
Pass out Batch Academic Year 2023
Major Criteria : Should be good in Computer Science core subjects, Database, Data structure, and coding .Good verbal and written skill.
Note - Shortlisted candidates will be called for Assessment Test followed by inperson interview at Bangalore office.
Candidates who have appeared for Aptitude test in last 6 months cannot be considered.
Please apply for the job over email us on vijeta.padwal@pivotree.com/ vedant.jadhav@pivotree.com
๐ŸšจJOB OPENING UPDATE๐Ÿšจ

Company โ€“ Heelium
Role โ€“ Data Analyst
Exp. โ€“ Fresher
Apply Here โ€“ https://www.linkedin.com/jobs/view/3803663081

Company โ€“ Genpact
Role โ€“ Data Analyst Python
Exp. โ€“ Fresher
Apply Here โ€“ https://www.linkedin.com/jobs/view/3810548762

Company โ€“ Encardio rite Group
Role โ€“ Business Intelligence Executive
Exp. โ€“ 0-3 yrs
Apply Here โ€“ https://www.naukri.com/job-listings-business-intelligence-executive-encardio-rite-group-lucknow-uttar-pradesh-0-to-3-years-180124006254?src=jobsearchDesk&sid=17057277472926218_3&xp=14&

Company โ€“ Lizmotors Mobility Pvt Ltd.
Role โ€“ AI/ML Engineering Intern
Exp. โ€“ Fresher
Apply Here โ€“ https://www.simplyhired.co.in/job/Po82XP_DYPSnKqsmvWZWurpzliWKMR92p3utnMTcThs_cNUjIZx_gw

Company โ€“ Wobot Intelligence Private Limited
Role โ€“ Data Analytics Intern
Exp. โ€“ Fresher
Apply Here โ€“ https://internshala.com/internship/detail/data-analytics-work-from-home-job-internship-at-wobot-intelligence-private-limited1705722978?utm_source=cp_link&referral=web_share

Company โ€“ UM IT Services & Consulting
Role โ€“ Data Science Intern
Exp. โ€“ Fresher
Apply Here โ€“ https://www.linkedin.com/jobs/view/3810011634

Company โ€“ Avaari
Role โ€“ Machine Learning Intern
Exp. โ€“ Fresher
Apply Here โ€“ https://internshala.com/internship/detail/machine-learning-part-time-job-internship-at-multiple-locations-in-avaari1705674973?utm_source=cp_link&referral=web_share

Company โ€“ Bhashsms
Role โ€“ Data Analyst Intern
Exp. โ€“ Fresher
Apply Here โ€“ https://internshala.com/internship/detail/data-analyst-internship-in-bangalore-at-jackson-joseph1705650414?utm_source=cp_link&referral=web_share

ALL THE BEST๐Ÿ’™