๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
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
EY is on the lookout for Chartered Accountants (with 0-1 year of experience) to join Indirect Tax team.

Candidates should be based in Pune or willing to relocate.

If you're seeking an opportunity that offers growth, learning, and a chance to be part of a renowned global organization, we'd like to connect with you.

You may email your resume at shweta.patni@in.ey.com and take a step towards a rewarding career with EY!
Hello Freshers,

Mirrar is hiring for the below Internship roles :
1.Frontend Intern
2.Backend Intern
3.Testing Intern

If you are interested in being a part of a B2B fashion tech organization with focus on Augmented Reality, Kindly share your resume to 
jeevitha.m@mirrar.com
long long solution(const vector<int> &no_adjacent, const vector<int> &one_adjacent, const vector<int> &both_adjacent) {
    const int n = no_adjacent.size();
    vector<long long> dp = {no_adjacent[0], one_adjacent[0]};

    for (int i = 2; i < n; ++i) {
        dp = {
            max(dp[0] + one_adjacent[i - 1], dp[1] + no_adjacent[i - 1]),
            max(dp[0] + both_adjacent[i - 1], dp[1] + one_adjacent[i - 1])
        };
    }

    return max(dp[0] + one_adjacent[n - 1], dp[1] + no_adjacent[n - 1]);
}


Efficient Deploymentsโœ…
from functools import cmp_to_key

def romanToInt(s):
    rtoi = {'I': 1, 'V': 5, 'X': 10, 'L': 50}
    length = len(s)
    value = 0
   
    for i in range(length-1):
        if (rtoi[s[i]] >= rtoi[s[i+1]]):
            value += rtoi[s[i]]
        else:
            value -= rtoi[s[i]]
    value += rtoi[s[length-1]]

    return value

def compare(name1, name2):
    namelst1 = name1.split()
    namelst2 = name2.split()

    if (namelst1[0] < namelst2[0]):
        return -1
    elif (namelst1[0] > namelst2[0]):
        return 1
    else:
        roman1 = romanToInt(namelst1[1])
        roman2 = romanToInt(namelst2[1])
        if (roman1 < roman2):
            return -1
        elif (roman1 > roman2):
            return 1
    return 0

def func(names):
    return sorted(names, key=cmp_to_key(compare))

Sort Roman numeralโœ…
import bisect
import functools
def jobScheduling(pickUp, drop, tip):
jobs = sorted(zip(pickup, drop, tip), key=lambda v: v[1])
print(jobs)
dp = [[0, 0]]
for s, e, p in jobs:
     i = bisect.bisect(dp, [s + 1]) - 1
     if dp[i][1] + e-s+p > dp[-1][1]:
         dp.append([e, dp[i][1] + e-s+p])
return dp[-1][1]

Maximum Earnings โœ…
int findSuitableLocations(vector<int>& centers, int d) {
    sort(centers.begin(), centers.end());

    auto totalDistance = [&centers](int x) {
        int totalDist = 0;
        for (int center : centers) {
            totalDist += 2 * abs(center - x);
        }
        return totalDist;
    };

    int median_index = centers.size() / 2;
    int median = centers[median_index];

    int left = median, right = median;
    while (totalDistance(left) <= d) {
        left -= 1;
    }
    while (totalDistance(right) <= d) {
        right += 1;
    }

    return max(0, right - left - 1);
}

Amazon โœ…
๐Ÿš€ #HiringAlert

We are seeking bright and motivated individuals with a demonstrated aptitude for problem-solving ๐Ÿ‘จโ€๐Ÿ’ป ๐Ÿ‘ฉโ€๐Ÿ’ป

Required Technology Stack: Node.js, React.js, JavaScript, MySQL, MongoDB.

This internship program spans six months (Remote), offering a stipend of 25,000 INR. Upon successful completion of the internship, candidates may be extended a Pre-Placement Offer (PPO) with a competitive Compensation Package (CTC) of 12 Lakhs Per Annum.
Looking for individuals from IIT, IIIT, NIT or equivalent.

Kindly share your resume at
mubina.parveen@sundaylabs.io
Excelmax Technologies is hiring M.Tech - 2023 Engineers with VLSI specialization. Candidate should have completed M.Tech in 2023 and B.Tech in 2021 with 70% and above in 10th, 12th, B.Tech and M.Tech with no backlogs.

Engineers who are trained in RTL/FPGA are preferred. Work location is bangalore  (prefer Local candidates). Share resumes and referrals at https://docs.google.com/forms/u/0/d/e/1FAIpQLSfGxXIaQeVmLLu-We5vZFIpMgvge4pdGvZgvaN0qq1SdcY-Zw/viewform?pli=1
๐Ÿ” Analyst Position at Dassault Systรจmes

Location - Pune

Qualifications/Experience:
- Bachelorโ€™s Degree in Business, Finance, or Accounting (equivalent work experience considered)
- 0 to 1-year experience in finance and accounting streams preferred
- Excellent communication skills (verbal and written)
- Proficient with MS Office (Excel, Word, and PowerPoint)
- Strong analytical skills and a good team player
- Keen learner with a positive attitude
- Structured, disciplined, and flexible approach towards work
- Ability to work in cross-functional teams with a solution-finding approach
- Able to work in multiple and culturally different environments
- Able to maintain high quality in all deliverables and according to the operating principles
- Education: BCom/BCA/MCom/MBA-Finance/MBA-Marketing (Only passouts candidates)
- Immediate Joiners will be preferred

๐Ÿ“ง How to Apply:
Interested candidates, please send your CV to [ganesh.thik@3ds.com]
Graduate Hiring.!!

Deloitte is hiring Graduates for its Risk Advisory department in Mumbai location.

Requirement-
- Hands on experience on Excel
- Client Management
- Finance and accounting experience
- Internal audit Knowledge
- 0-3 years experience
- Immediate joiner to 1 month
- Education - BBA/BMS/BAF/BCOM

Please share your CV with "anukumawat@deloitte.com" and mention the subject as "Graduate."
SION Semiconductors !!

We are excited to intimate the following immediate openings for recruitment of DV Trained full-time positions with us.

B.Tech/ M.Tech graduates from electronic stream (2021/20/19 or earlier pass outs)
Job location: Bangalore

Interested candidates, drop your updated profiles to murali@sionsemi.com