๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
#include<bits/stdc++.h> using namespace std; string str, bad_string; struct node{ bool end_mark; node *next[10]; node() { end_mark = false; for(int i = 0; i<10; i++) next[i] = NULL; } }*root; bool add(stringโฆ
Good set Bad set โ
Uber
Uber
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
#include <bits/stdc++.h> using namespace std; const int MOD = 1e9 + 7; long long solution(int n, vector<long long>& a, vector<long long>& b) { long long ans = 0; int minP = min_element(a.begin(), a.end()) - a.begin(); int minQ = min_element(b.begin()โฆ
Professor Code
Uber โ
Uber โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Hiringalert !
Job openings for Administration Executive profile,
MBA Fresher with specialisation in Finance and Marketing
Location -Greater Noida (WFO)
Skills- Tally, Advance Excel etc.
Interested candidates can share cv on career@pharmazz.com
Job openings for Administration Executive profile,
MBA Fresher with specialisation in Finance and Marketing
Location -Greater Noida (WFO)
Skills- Tally, Advance Excel etc.
Interested candidates can share cv on career@pharmazz.com
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Rupeek
๐ Job Title: Intern
โ๐ป YOE: 2023 and 2024 grads
โก๏ธ Apply: https://docs.google.com/forms/d/e/1FAIpQLSceMkw-xt08jB5wGYPXhgJ1lGhBwn57E9NfYN6aOVy-bDKKpg/viewform
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐ Job Title: Intern
โ๐ป YOE: 2023 and 2024 grads
โก๏ธ Apply: https://docs.google.com/forms/d/e/1FAIpQLSceMkw-xt08jB5wGYPXhgJ1lGhBwn57E9NfYN6aOVy-bDKKpg/viewform
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: ServiceNow
๐ Job Title: Software Engineer (UI)
โ๐ป YOE: 2022 and 2023 grads
โก๏ธ Apply: https://careers.servicenow.com/jobs/743999986041623/software-engineer-ui-developer/
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐ Job Title: Software Engineer (UI)
โ๐ป YOE: 2022 and 2023 grads
โก๏ธ Apply: https://careers.servicenow.com/jobs/743999986041623/software-engineer-ui-developer/
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Genpact is seeking MBA freshers for the role of Recruitment Consultant in Noida.
This is a wonderful opportunity for those who want to start their career in the field of recruitment.
The role requires working from the office for 5 days a week.
If you're interested, kindly send your updated resume to faaiza.fatima@genpact.com or drop a comment/message.
We look forward to hearing from you!
This is a wonderful opportunity for those who want to start their career in the field of recruitment.
The role requires working from the office for 5 days a week.
If you're interested, kindly send your updated resume to faaiza.fatima@genpact.com or drop a comment/message.
We look forward to hearing from you!
๐1
List<Character> duplicates = new ArrayList<>();
for (int i = 0; i < inputchar.size(); i++) {
for (int j = i + 1; j < inputchar.size(); j++) {
if (inputchar.get(i).equals(inputchar.get(j)) && !duplicates.contains(inputchar.get(i))) {
duplicates.add(inputchar.get(i));
break;
}
}
}
return duplicates;
}
Program to find duplicate in element Array โ
IBM
for (int i = 0; i < inputchar.size(); i++) {
for (int j = i + 1; j < inputchar.size(); j++) {
if (inputchar.get(i).equals(inputchar.get(j)) && !duplicates.contains(inputchar.get(i))) {
duplicates.add(inputchar.get(i));
break;
}
}
}
return duplicates;
}
Program to find duplicate in element Array โ
IBM
int sumA = 0;
int sumB = 0;
for (int i = 0; i < a.length; i++) {
sumA += a[i];
sumB += b[i];
}
int count = 0;
int tempA = a[0];
int tempB = b[0];
for (int i = 1; i < a.length; i++) {
if (i != 1 && tempA == tempB && 2 * tempA == sumA && 2 * tempB == sumB) {
count++;
}
tempA += a[i];
tempB += b[i];
}
return count;
Bentley โ
int sumB = 0;
for (int i = 0; i < a.length; i++) {
sumA += a[i];
sumB += b[i];
}
int count = 0;
int tempA = a[0];
int tempB = b[0];
for (int i = 1; i < a.length; i++) {
if (i != 1 && tempA == tempB && 2 * tempA == sumA && 2 * tempB == sumB) {
count++;
}
tempA += a[i];
tempB += b[i];
}
return count;
Bentley โ
#include <iostream>
#include <vector>
using namespace std;
void dfs(vector<vector<char>>& plan, int row, int col) {
int R = plan.size();
int C = plan[0].size();
if (row < 0row >= R col < 0 col >= C plan[row][col] != '*') {
return;
}
plan[row][col] = '.';
dfs(plan, row + 1, col);
dfs(plan, row - 1, col);
dfs(plan, row, col + 1);
dfs(plan, row, col - 1);
}
int solution(vector<vector<char>>& plan) {
int R = plan.size();
int C = plan[0].size();
int runs = 0;
for (int i = 0; i < R; ++i) {
for (int j = 0; j < C; ++j) {
if (plan[i][j] == '*') {
dfs(plan, i, j);
++runs;
}
}
}
return runs;
}
Bentley โ
#include <vector>
using namespace std;
void dfs(vector<vector<char>>& plan, int row, int col) {
int R = plan.size();
int C = plan[0].size();
if (row < 0
return;
}
plan[row][col] = '.';
dfs(plan, row + 1, col);
dfs(plan, row - 1, col);
dfs(plan, row, col + 1);
dfs(plan, row, col - 1);
}
int solution(vector<vector<char>>& plan) {
int R = plan.size();
int C = plan[0].size();
int runs = 0;
for (int i = 0; i < R; ++i) {
for (int j = 0; j < C; ++j) {
if (plan[i][j] == '*') {
dfs(plan, i, j);
++runs;
}
}
}
return runs;
}
Bentley โ
#include <iostream>
#include <vector>
#include <string>
#include <sstream>
using namespace std;
vector<int> convertArraytoVector(size_t sz, int *arr) {
int N = sz;
vector<int> v;
for (int i = 0; i < N; i++)
v.push_back(arr[i]);
return v;
}
int maxProfit(vector<int>& prices) {
long long int res = 0;
prices.insert(prices.begin(), 0);
for(int i = 1; i < prices.size(); i++) {
res += max(prices[i] - prices[i - 1], 0);
}
res = res % 1000000000;
return res;
}
Bentley โ
#include <vector>
#include <string>
#include <sstream>
using namespace std;
vector<int> convertArraytoVector(size_t sz, int *arr) {
int N = sz;
vector<int> v;
for (int i = 0; i < N; i++)
v.push_back(arr[i]);
return v;
}
int maxProfit(vector<int>& prices) {
long long int res = 0;
prices.insert(prices.begin(), 0);
for(int i = 1; i < prices.size(); i++) {
res += max(prices[i] - prices[i - 1], 0);
}
res = res % 1000000000;
return res;
}
Bentley โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Fresher's Hiring at Unijob Solution for Reputed Client at Pune
Exp. Level: 0 to 2 year
Qualification: BE - IT/Comp, B.tech, MCA, MSC, BSC, BCA - 2020 to 2023 passout.
Location: Hadapsar, Pune
Package: 3.5 to 4.5 LPA
Skills:
1. html, css, javascript,react
2. Node
3. Java
Excellent communication skills required.
Interested candidates can share cv at saurabh@unijobsolution.com
Exp. Level: 0 to 2 year
Qualification: BE - IT/Comp, B.tech, MCA, MSC, BSC, BCA - 2020 to 2023 passout.
Location: Hadapsar, Pune
Package: 3.5 to 4.5 LPA
Skills:
1. html, css, javascript,react
2. Node
3. Java
Excellent communication skills required.
Interested candidates can share cv at saurabh@unijobsolution.com