vector<string> solve(vector<vector<string>> p, vector<string> a, int w) {
vector<string> r;
r.push_back(string(w + 2, '*'));
for(int i = 0; i < p.size(); i++) {
string l = "";
for(string wd : p[i]) {
if(l.size() + wd.size() + (l.empty() ? 0 : 1) > w) {
if(a[i] == "LEFT") {
l += string(w - l.size(), ' ');
} else if(a[i] == "RIGHT") {
l = string(w - l.size(), ' ') + l;
}
r.push_back("*" + l + "*");
l = "";
}
if(!l.empty()) {
l += " ";
}
l += wd;
}
if(!l.empty()) {
if(a[i] == "LEFT") {
l += string(w - l.size(), ' ');
} else if(a[i] == "RIGHT") {
l = string(w - l.size(), ' ') + l;
}
r.push_back("*" + l + "*");
}
}
r.push_back(string(w + 2, '*'));
return r;
}
Coinbase โ
vector<string> r;
r.push_back(string(w + 2, '*'));
for(int i = 0; i < p.size(); i++) {
string l = "";
for(string wd : p[i]) {
if(l.size() + wd.size() + (l.empty() ? 0 : 1) > w) {
if(a[i] == "LEFT") {
l += string(w - l.size(), ' ');
} else if(a[i] == "RIGHT") {
l = string(w - l.size(), ' ') + l;
}
r.push_back("*" + l + "*");
l = "";
}
if(!l.empty()) {
l += " ";
}
l += wd;
}
if(!l.empty()) {
if(a[i] == "LEFT") {
l += string(w - l.size(), ' ');
} else if(a[i] == "RIGHT") {
l = string(w - l.size(), ' ') + l;
}
r.push_back("*" + l + "*");
}
}
r.push_back(string(w + 2, '*'));
return r;
}
Coinbase โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Email: career@genesistechnologies.in
WhatsApp: +91-8962827027, +91- 9644477797
๐ฏTo Register go to-
https://exam.genesisapps.in/register
๐ขOffice Location: https://lnkd.in/dgXEspfs
WhatsApp: +91-8962827027, +91- 9644477797
๐ฏTo Register go to-
https://exam.genesisapps.in/register
๐ขOffice Location: https://lnkd.in/dgXEspfs
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Accenture Mass Hiring
๐ฏAccenture Innovation Challenge
Graduation Year: 2025 / 2026 / 2027 / 2028
๐Eligibility:
Accenture Innovation Challenge 2024 is open to undergraduate and postgraduate students (currently full-time students) of all years across all institutes in India
Roles Offered:
1.โ โ Associate Software Engineer - 4.6 LPA
2.โ โ System and Application Services Associate - 3.5 LPA
๐ปApply Now: https://vision.hack2skill.com/event/aic2024/
๐ฏAccenture Innovation Challenge
Graduation Year: 2025 / 2026 / 2027 / 2028
๐Eligibility:
Accenture Innovation Challenge 2024 is open to undergraduate and postgraduate students (currently full-time students) of all years across all institutes in India
Roles Offered:
1.โ โ Associate Software Engineer - 4.6 LPA
2.โ โ System and Application Services Associate - 3.5 LPA
๐ปApply Now: https://vision.hack2skill.com/event/aic2024/
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Hacker Earth is hiring Technical Intern
For 2025, 2026 grads
Location: Banagalore
https://hackerearth.applytojob.com/apply/H92Hxcj9xX/Technical-Engineer-Problem-Setter-Programming-Internship?source=LINKR
For 2025, 2026 grads
Location: Banagalore
https://hackerearth.applytojob.com/apply/H92Hxcj9xX/Technical-Engineer-Problem-Setter-Programming-Internship?source=LINKR
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Deloitte is hiring Java Script Developer
For 2021 grads
Location: Bangalore
https://www.linkedin.com/jobs/view/4029018352
For 2021 grads
Location: Bangalore
https://www.linkedin.com/jobs/view/4029018352
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
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 โ
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 โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐More Yeahs Hiring
Walk - In Drive
Role: Traniee Network Engineer
Date: 23 - 25 Septemeber, 2024
Time: 11 AM - 5 PM
Walk - In Drive
Role: Traniee Network Engineer
Date: 23 - 25 Septemeber, 2024
Time: 11 AM - 5 PM
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
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.
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.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
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
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
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐ 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
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 โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Appinventiv on LinkedIn: #hiring #humanresources | 55 comments
Hey Freshers!
Appinventiv is looking for dynamic HR professional who are excited to grow in our fast-paced environment.
If you're eager to make a differenceโฆ | 55 comments on LinkedIn
Appinventiv is looking for dynamic HR professional who are excited to grow in our fast-paced environment.
If you're eager to make a differenceโฆ | 55 comments on LinkedIn
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
RetainIQ hiring Front End Engineer in Bengaluru, Karnataka, India | LinkedIn
Posted 3:50:31 PM. About RetainIQRetainIQ Job Description - Frontend EngineerRetainIQ enables e-commerce stores & D2CโฆSee this and similar jobs on LinkedIn.