๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.63K subscribers
5.59K photos
3 videos
95 files
10.2K 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
Good Opportunity For Everyoneโœ…โœ…

Dont miss this

Axis Bank is Hiring for Multiple Roles:โœ…

1)Any Graduate or Post Graduate can apply

2)Fresher or Experience upto 5 years

Important Dates:

Registration Starts: 24th Feb '23

Registration Ends: 14th Apr '23 โœ…

Assessment 1 Final Phase: 15th Apr '23 โœ…

Assessment 2: Starts 23rd Apr '23

Final Round: Starts 5th May '23โœ…

Results Announcement: 15th May '23โœ…

https://ams.hirepro.in/registration/axisbankarise/ax2se/apply/?event=42659&job=70313&gclid=Cj0KCQjw8qmhBhClARIsANAtbof2-n7phdiQBhrjxlrqISoWOGljRg30YuqPfXPOd29801JRXVbekRwaAuEUEALw_wcB
๐Ÿ‘1
static bool cmp(int &x, int &y)
{
    int c1 =builtin_popcount(x), c2 = builtin_popcount(y);
    return (c1 == c2) ? x < y : c1 < c2;
}

vector<int> sortByBits(vector<int> &v)
{
    sort(v.begin(), v.end(), cmp);
    return v;
}

Cardinality Sorting โœ…
๐Ÿ‘1