๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.6K 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
Walmart Off Campus Hiring Fresher For Data Analyst        
Location: Bangalore                              
Qualification: Bachelor's Degree                            
Work Experience: Fresher                                                   
Salary : Up to 15 LPA      
                       
Apply Link: https://walmart.wd5.myworkdayjobs.com/en-US/WalmartExternal/job/DATA-ANALYST-II--DATA-ANALYTICS_R-1796887-1


All the best ๐Ÿ‘๐Ÿ‘
Techniqes Engineering Services is hiring post graduate M.E. or M. Tech. structural engineer freshers to 1 year experience. Candidate should have knowledge of Earthquake resistant design and staadpro software.
Engineer will work on Oil & Gas projects, Industrial structures, Steel Structures and foundations

CGPA more than 7.5 or 75% in BE and ME
Location - Mumbai,  Andheri East

interested candidates may send CV at info@techniqes.com

salary range -3 lacs to 4.5 lacs Per annum

mail with below details along with CV
current Location -
Notice period -
CGPA in B.E.-
CGPA in M.E.-
Power Electronics (EV) Internship (M Tech -2025 Passing out Batch ) 9 to 12 Months

Topic: The internship will involve design and development of Electric Vehicle Power electronic subsystems like Inverter, DC DC Converter, Charger etc. 
Branch / Specialization โ€“ Power Electronics / Drives or similar with good academics.
Location: Pune. In person presence required. 
Duration: 9 to 12 months.

https://forms.office.com/r/nHg4dTgE2v
vector<ll> babuswiggyjayega(vector<ll> a, vector<ll> b)
{
    ll n1 = a.size(), n2 = b.size();
    ll i = 0, j = 0, k = 0;
    vector<ll> golu(n1 + n2);
    while (i < n1 && j < n2)
    {
        if (a[i] < b[j])
            golu[k++] = a[i++];
        else
            golu[k++] = b[j++];
    }

    while (i < n1)
        golu[k++] = a[i++];
    while (j < n2)
        golu[k++] = b[j++];
    return golu;
}

Merge 2 Arrays โœ…
๐Ÿ‘3
โ—๏ธEma Recruitment 2024 for freshers | Software Engineer | Bangalore | Rs 7 โ€“ 14 LPAโ—๏ธ

๐Ÿ‘จโ€๐Ÿ’ปJob Role : Software Engineer
๐ŸŽ“Qualification : B.E/B.Tech
๐ŸŽ–Experience : 0 โ€“ 1 years
๐Ÿ’ฐPackage : 7-14 LPA

โญ•๏ธ Apply Fast :

https://jobs.ashbyhq.com/ema/beacf1ac-d907-4f86-8358-0eff45b358f1
๐Ÿ‘2
import requests

def asteroidOrbits(year, orbitclass):
    base_url = "https://jsonmock.hackerrank.com/api/asteroids/search"
    page = 1
    res = []

    while True:
        response = requests.get(f"{base_url}?orbit_class={orbitclass}&discovery_date={year}&page={page}").json()
        res.extend(response['data'])

        if page >= response['total_pages']:
            break

        page += 1
    res.sort(key=lambda x: (float(x.get('period_yr', 1.00)), x['designation']))
    return [x['designation'] for x in res]


Rest API: Asteroid Orbits โœ…
๐Ÿ‘2๐Ÿ‘Ž1