๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.58K subscribers
5.59K photos
3 videos
95 files
10K 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
๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
Photo
#include <stdio.h>
void swap(int a[],int b[],int n)
{
  for(int i=0;i<n;i++)
    {
      for(int j=i+1;j<n;j++)
      {
        if(b[i]>b[j])
        {
          int t=a[i];
          a[i]=a[j];
          a[j]=t;
          t=b[i];
          b[i]=b[j];
          b[j]=t;
        }
      }
    }
}
int main()
{
   int n,x,y;
  scanf("%d",&n);
  int a[n],b[n];
  for(int i=0;i<n;i++)
  {
    scanf("%d%d",&a[i],&b[i]);
  }
   swap(a,b,n);
  int max=0;
  for(int i=0;i<n-1;i++)
  {
    if(b[i+1]-b[i]>max)
    {
      max=b[i+1]-b[i];
      x=a[i];
     y=a[i+1];
    }
  }
  if(x<y)
    printf("%d %d",x,y);
  else
    printf("%d %d",y,x);
   return 0;
}

Citi bank โœ…
https://www.linkedin.com/jobs/view/4030998498

0-2 years of experience in developing applications using Java.
Knowledge in Java programming language.
Understanding with SQL Server database.
Understanding of Object-Oriented design principles
Excellent written and verbal communication skills.
Preferred Requirements:
Knowledge on Spring boot and Hibernate.
https://ciklum.taleo.net/careersection/iam/accessmanagement/login.jsf?redirectionURI=https%3A%2F%2Fciklum.taleo.net%2Fcareersection%2Fciklum_career%2Fjobapply.ftl%3Flang%3Den%26job%3D24000951%26src%3DJB-10140&securedLogin=true

Education: Bachelorโ€™s degree in Computer Science, Information Technology, or a related field, or equivalent work experience
Experience: 0-2 years of experience in application support, technical support, or a related role
Technical Skills: Basic knowledge of application support tools and methodologies. Familiarity with operating systems, databases, and basic scripting is a plus
Problem-Solving: Strong analytical and troubleshooting skills with the ability to diagnose and resolve technical issues
Communication: Excellent verbal and written communication skills. Ability to explain technical concepts to non-technical users
Teamwork: Ability to work collaboratively in a team environment and support other team members as needed


Desirable:

Experience with specific technologies or platforms used by the company (SQL, cloud services)
Familiarity with ITIL or other IT service management frameworks
๐Ÿ‘2
๐Ÿš€ LogiQuad Solutions is Hiring ambitious AWS freshers!

Freshers with a passion for AWS DevOps, who are ready to launch their careers in DevOps and Cloud Infrastructure.

Location:- Remote

Interested candidates can apply and share the candidature at ppandya@logiqaud.com
๐Ÿ‘1
#include<bits/stdc++.h>
using namespace std;
int main() {
  int n; cin >> n;
  vector<vector<int>> v(n, vector<int>(2));
  for (int i = 0; i < n; ++i)
  {
    cin >> v[i][0] >> v[i][1];
  }
  vector<int>dp[1001];
  int mx = 0;
  for (int i = 1; i <= 1000; ++i)
  {
    vector<int>temp;
    for (int j = 0; j < n; j++) {
      if (v[j][0] <= i && i <= v[j][1]) {
        temp.push_back(j);
      }
    }
    for (auto it : temp)
      dp[i].push_back(it + 1);
    mx = max(mx, (int)temp.size());
  }
  vector<vector<int>>res;
  for (int i = 1; i <= 1000; ++i)
  {
    if (((int)dp[i].size()) == mx) {
      res.push_back(dp[i]);
    }
  }
  cout << mx << endl;
  for (auto it : res) {
    for (int i = 0; i < it.size(); ++i)
    {
      cout << it[i] << " ";
    }
    cout << endl;
  }
}


MasterCard โœ…
#include <iostream>
#include <string>
using namespace std;
int main() {
    string s1, s2;
    cin >> s1 >> s2;
    if (s1.length() != s2.length()) {
        cout << "No" << endl;
        return 0;
    }
    string t = s1 + s1;
    if (t.find(s2) != string::npos) {
        cout << "Yes" << endl;
    } else {
        cout << "No" << endl;
    }
   
    return 0;
}


Aptos โœ…
SELECT 
    c.email,
    COUNT(cp.package_id) AS total_packages,
    SUM(p.weight) AS total_weight
FROM
    customers c
JOIN
    customers_packages cp ON c.id = cp.customer_id
JOIN
    packages p ON cp.package_id = p.id
WHERE
    p.status IN ('created', 'shipped', 'on hold')
GROUP BY
    c.email
ORDER BY
    total_weight DESC;


IBMโœ