๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
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
#include <bits/stdc++.h>
using namespace std;

int main() {
    int t;
    cin >> t;
    while (t--) {
        int n, m, k, x, y;
        cin >> n >> m >> k >> x >> y;
        bool can_escape = true;
        for (int i = 0; i < k; i++) {
            int xi, yi;
            cin >> xi >> yi;
            int dx = abs(x - xi);
            int dy = abs(y - yi);
            if ((dx + dy) % 2 == 0) { // if Vika and friend are in same type of room
                can_escape = false;
            }
        }
        if (can_escape) {
            cout << "YES\n";
        } else {
            cout << "NO\n";
        }
    }
    return 0;
}
Codeforces Aโœ…
Please find latest Opportunities from Career page and Apply before Expired before applying kindly follow jobs description and eligibility carefully

passout year: 2023, 2022, 2021, 2020, 2019, 2018


Turing Hiring Frontend Developer ( Work from home)
Apply now : https://www.turing.com/remote-developer-jobs/j/li-promoted/front-end-engineer-134757-in?

MasterCard Hiring Software Engineer
Apply now: https://careers.mastercard.com/us/en/job/R-197293/Software-Engineer

Webomates Hiring Manul tester ( Work From home)
Apply now: https://www.webomates.com/manual-testing-engineer-3/

IBM Hiring Application Developers
Apply now : https://careers.ibm.com/job/18010338/application-developer-content-courseware-design-pune-in/

Tech Mahindra Hiring For Multiple Role
Apply now : https://registration.techmahindra.com/Candidate/RegDefault.aspx

Cornerstone Hiring For DevOps Engineer
Apply now: https://cornerstone.csod.com/ux/ats/careersite/2/home/requisition/8487

Citibank Hiring For Salesforce Developer
Apply now: https://jobs.citi.com/job/-/-/287/51626977392?

Parallel Hiring Junior Software Engineer
Apply now: https://jobs.lever.co/parallelwireless/d5392784-452b-4256-a1a1-80295828fd1a?

EY Hiring Manul tester
Apply now: https://careers.ey.com/ey/job/Tester/951240901

Schneider Electric Hiring Data Analyst
Apply now: https://careers.se.com/global/jobs/008J93?

GSK Hiring Junior Programmer
Apply now: https://jobs.gsk.com/en-gb/jobs/370251?

Deloitte Hiring Data Analyst
Apply now: https://usijobs.deloitte.com/careersUSI/JobDetail/USI-EH24-MF-ITS-CA-Off-Campus-Analyst/147196

Comcast Hiring SDE1
Apply now: https://jobs.comcast.com/jobs/description/regular?external_or_internal=External&job_id=R367806

Capgemini Hiring Service Desk Analyst
Apply now: https://www.capgemini.com/jobs/O17eRIkB_6fKCuLHYU9F/service-desk-analyst--1-to-3-years--mumbai/
๐Ÿ‘1
vector<long long>solution(int t,vector<vector<long long>>carPrices){
    vector<long long>ans;
     for(int i=0;i<t;i++){
         vector<long long>arr=carPrices[i];
         long long val = 0;
         long long mx = INT_MIN;
         int N=arr.size();
        for (int i = 0; i < N; i++) {
    
            long long curr = arr[i];
            mx = max(mx, curr);
            val = max(val, mx - curr);
        }
        long long res = 0;
        while ((1LL << res) - 1 < val) {
            ++res;
        }
        cout<<res<<endl;
        ans.push_back(res);
     }
     return ans;
}

Uber โœ…(Car)
#include<bits/stdc++.h>
typedef double C;
typedef complex<C> P;
#define X real()
#define Y imag()
P a[205];
int n, x, y, k;
bool check(int r){
int c=0;
for(int i = 0; i < n; i++){
for(int j = i+1; j < n; j++){
P g = a[j] - a[i];
double d = abs(g);
if(d > 2*r) continue;
P mid = (a[i] + a[j]) * (1.0/2);
double h = sqrt(r*1.0*r - d*d/4);
P per = P(-g.Y,g.X) * (h/d);
int c1 = 2, c2 = 2;
for(int l = 0; l < n; l++){
if(l == i or l == j) continue;
if(abs(a[l] - (mid-per)) <= r)
c1++;
if(abs(a[l] - (mid+per)) <= r)
c2++;
}
c=max({c,c1,c2});
}
}
return c>=k;
}
int Solution::solve(vector<vector<int> > &A, int B ) {
n = A.size();
for(int i = 0; i < n;i++)
a[i] = {1.0*A[i][0], 1.0*A[i][1]};
k = B;
int l = 1, h = 2000000000, ans;
while(h >= l){
int m = (l+h)/2;
if(check(m)) {
ans = m;
h = m-1;
}
else l = m+1;
}
return ans;
}

Red Zone
Media. Net โœ…
int closestToTarget(vector<int> oxygenLevels, int target) {
    int n = oxygenLevels.size();
    int minDiff = abs(oxygenLevels[0] - target); // Initialize the minimum difference with the first oxygen level

    // Iterate through the oxygen levels to find the minimum difference
    for (int i = 1; i < n; i++) {
        int diff = abs(oxygenLevels[i] - target);
        minDiff = min(minDiff, diff);
    }

    return minDiff;
}

Optimum oxygen
Salesforce โœ