๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.52K subscribers
5.56K photos
3 videos
95 files
9.67K 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
int solve(vector<int>& xp) {
    sort(xp.begin(), xp.end());
    set<double> s;
    int i = 0, j = xp.size() - 1;

    while (i < j) {
        double a = (xp[i] + xp[j]) / 2.0;
        s.insert(a);
        i++;
        j--;
    }

    return s.size();
}

Amazon โœ…
Android App Developer (INTERN) at Petuk Ji
Working hours : 6 hours a day (Stay Connected on google meet during working hours)
Weekly Off: 6 Days a week
Stipend: - Rating Based (FEE - 3000 EE - 2500 ME - 2000 BE - 0,00 )
Min. Duration - 3 Month.

https://www.linkedin.com/jobs/view/3908383748

NOTE: Very low stipend so apply at own risk
Hi Connections,

Urgent Hiring for Security Analyst for Noida & Mumbai Location.
Exp- 0-2+ Years.
Candidate should be good knowledge of MS office.
Candidate should have good communication skills.

Interested candidates can send their cv at yogesh@tophire.in
int main()
{
    string text;
    getline(cin, text);

    int index = 0;

    while (index + 13 < text.length() && (index = text.rfind(" ", index + 13)) != string::npos) {
        text.replace(index, 1, "\n");
    }

    cout << text << endl;

    return 0;
}


INFA thon 4.0โœ…
We are seeking a passionate and enthusiastic individual to join our Finance team as an CA Industrial trainee at 20Cube Logistics Solutions Private Limited.

This is a 12-15 month training opportunity based in Chennai, with a stipend of 20k per month.

We are looking for candidates who possess the following skills:
- Enthusiasm for Finance
- Ability to work with senior stakeholders
- Innovative mindset
- Hands-on experience in Excel
- Attention to details

If you think you are a good fit for this role, please DM your CV along with the following details:
1. Preferred date of joining
2. Why you want to opt for industrial training with us

Alternatively, you can also mail your CV to vravichandran@20cube.com

Don't miss this opportunity to gain valuable experience and kickstart your career in Finance!
#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
#define max_v 25
bool f(double A,double B,double a,double b)
{
    double d=sqrt(a*a+b*b);
    double a1=asin(A/d);
    double a2=asin(b/d)*2.0;
    double h=cos(a1-a2)*d;
    if(B>h)
        return true;
    else
        return false;
}
int main()
{
    int t;
    bool flag;
    cin >> t;
    while(t--)
    {
        double A,B,a,b;
        cin >> A >> B >> a >> b;
        if(A<B)
            swap(A,B);
        if(a<b)
            swap(a,b);
        if(A>a&&B>b)
        {
            flag=true;
        }
        else if(A*B<=a*b||b>=B)
        {
            flag=false;
        }else
        {
            flag=f(A,B,a,b);
        }
        if(flag)
        {
            cout << "Escape is possible." << endl;

        }else
        {
            cout << "Box cannot be dropped." << endl;

        }
    }
    return 0;
}

INFAthon 4.0โœ