Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Tata Capital is hiring for Quality Executive.
Experience :- 0 to 2 year's
Location :- Karnataka
Apply Now - https://cutt.ly/zwHcWs3G
Experience :- 0 to 2 year's
Location :- Karnataka
Apply Now - https://cutt.ly/zwHcWs3G
#include<bits/stdc++.h>
using namespace std;
#define MOD 1000000007
#define MAX 250
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
string s;
cin >> s;
vector<long long> dp(s.size()+1, 0);
dp[0] = 1;
for(int i=1; i<=s.size(); i++) {
if(s[i-1] != '0') {
dp[i] = dp[i-1];
}
if(i > 1 && s[i-2] != '0' && stoi(s.substr(i-2, 2)) <= 26) {
dp[i] = (dp[i] + dp[i-2]) % MOD;
}
}
cout << dp[s.size()] << "\n";
return 0;
}
Alphanumeric combinationsโ
using namespace std;
#define MOD 1000000007
#define MAX 250
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
string s;
cin >> s;
vector<long long> dp(s.size()+1, 0);
dp[0] = 1;
for(int i=1; i<=s.size(); i++) {
if(s[i-1] != '0') {
dp[i] = dp[i-1];
}
if(i > 1 && s[i-2] != '0' && stoi(s.substr(i-2, 2)) <= 26) {
dp[i] = (dp[i] + dp[i-2]) % MOD;
}
}
cout << dp[s.size()] << "\n";
return 0;
}
Alphanumeric combinationsโ
#include <bits/stdc++.h>
using namespace std;
bool f(int n) {
string s = to_string(n);
return s.find('1') != string::npos && s.find('2') != string::npos && s.find('3') != string::npos;
}
vector<int> solve(vector<int>& nums) {
vector<int> res;
for (int n : nums) {
if (f(n)) {
res.push_back(n);
}
}
if (res.empty()) {
return {-1};
}
sort(res.begin(), res.end());
return res;
}
int main() {
vector<int> nums = {1456, 345671, 43218, 123};
vector<int> res = solve(nums);
for (int i = 0; i < res.size(); ++i) {
if (i > 0) {
cout << ",";
}
cout << res[i];
}
cout << endl;
return 0;
}
Number Checker โ
using namespace std;
bool f(int n) {
string s = to_string(n);
return s.find('1') != string::npos && s.find('2') != string::npos && s.find('3') != string::npos;
}
vector<int> solve(vector<int>& nums) {
vector<int> res;
for (int n : nums) {
if (f(n)) {
res.push_back(n);
}
}
if (res.empty()) {
return {-1};
}
sort(res.begin(), res.end());
return res;
}
int main() {
vector<int> nums = {1456, 345671, 43218, 123};
vector<int> res = solve(nums);
for (int i = 0; i < res.size(); ++i) {
if (i > 0) {
cout << ",";
}
cout << res[i];
}
cout << endl;
return 0;
}
Number Checker โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
const int INF = 99;
const int MAXN = 20;
int dist[MAXN][MAXN];
int next_node[MAXN][MAXN];
int path_count[MAXN][MAXN][MAXN];
void solve(int n) {
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (i != j && dist[i][j] != INF) {
for (int k = 0; k < n; k++) {
if (dist[i][k] + dist[k][j] == dist[i][j]) {
path_count[i][j][k]++;
}
}
}
}
}
vector<int> v;
for (int k = 0; k < n; k++) {
int count = 0;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (i != j && i != k && j != k) {
count += path_count[i][j][k];
}
}
}
if (count > 0) {
v.push_back(k);
}
}
sort(v.begin(), v.end());
for (int node : v) {
cout << node << endl;
}
}
int main() {
int n;
cin >> n >> n;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
cin >> dist[i][j];
if (dist[i][j] == INF) {
next_node[i][j] = -1;
} else {
next_node[i][j] = j;
}
}
}
for (int k = 0; k < n; k++) {
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (dist[i][k] + dist[k][j] < dist[i][j]) {
dist[i][j] = dist[i][k] + dist[k][j];
next_node[i][j] = next_node[i][k];
}
}
}
}
solve(n);
return 0;
}
#include <vector>
#include <algorithm>
using namespace std;
const int INF = 99;
const int MAXN = 20;
int dist[MAXN][MAXN];
int next_node[MAXN][MAXN];
int path_count[MAXN][MAXN][MAXN];
void solve(int n) {
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (i != j && dist[i][j] != INF) {
for (int k = 0; k < n; k++) {
if (dist[i][k] + dist[k][j] == dist[i][j]) {
path_count[i][j][k]++;
}
}
}
}
}
vector<int> v;
for (int k = 0; k < n; k++) {
int count = 0;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (i != j && i != k && j != k) {
count += path_count[i][j][k];
}
}
}
if (count > 0) {
v.push_back(k);
}
}
sort(v.begin(), v.end());
for (int node : v) {
cout << node << endl;
}
}
int main() {
int n;
cin >> n >> n;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
cin >> dist[i][j];
if (dist[i][j] == INF) {
next_node[i][j] = -1;
} else {
next_node[i][j] = j;
}
}
}
for (int k = 0; k < n; k++) {
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (dist[i][k] + dist[k][j] < dist[i][j]) {
dist[i][j] = dist[i][k] + dist[k][j];
next_node[i][j] = next_node[i][k];
}
}
}
}
solve(n);
return 0;
}
int solve(int n, vector<int>& arr) {
while (arr.size() > 1) {
int len = INT_MAX;
int idx = -1;
for (int i = 0; i < arr.size() - 1; ++i) {
int d = arr[i + 1];
if (d == 0 || arr[i] == 0) {
continue;
}
int r = min(arr[i] % d, d % arr[i]);
if (r < len) {
len = r;
idx = i;
}
}
if (idx == -1) {
break;
}
int d = arr[idx + 1];
if (d != 0) {
arr[idx] = min(arr[idx] % d, d % arr[idx]);
}
arr.erase(arr.begin() + idx + 1);
}
return arr.size();
}
Women Day Mathematics Challenge โ
while (arr.size() > 1) {
int len = INT_MAX;
int idx = -1;
for (int i = 0; i < arr.size() - 1; ++i) {
int d = arr[i + 1];
if (d == 0 || arr[i] == 0) {
continue;
}
int r = min(arr[i] % d, d % arr[i]);
if (r < len) {
len = r;
idx = i;
}
}
if (idx == -1) {
break;
}
int d = arr[idx + 1];
if (d != 0) {
arr[idx] = min(arr[idx] % d, d % arr[idx]);
}
arr.erase(arr.begin() + idx + 1);
}
return arr.size();
}
Women Day Mathematics Challenge โ
#include<bits/stdc++.h>
using namespace std;
int main() {
int n;
cin >> n;
vector<int> a(n);
for(int i=0; i<n; i++) {
cin >> a[i];
}
sort(a.begin(), a.end());
int ans = 0, count = 1;
for(int i=1; i<n; i++) {
if(a[i] > a[i-1]) {
ans += count;
count = 1;
} else {
count++;
}
}
cout << ans << endl;
return 0;
}
using namespace std;
int main() {
int n;
cin >> n;
vector<int> a(n);
for(int i=0; i<n; i++) {
cin >> a[i];
}
sort(a.begin(), a.end());
int ans = 0, count = 1;
for(int i=1; i<n; i++) {
if(a[i] > a[i-1]) {
ans += count;
count = 1;
} else {
count++;
}
}
cout << ans << endl;
return 0;
}
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Job Role : Service Desk Skills
Qualification : B.E/B.Tech
Batch : Any Batch
https://www.linkedin.com/jobs/view/3797415823/
Qualification : B.E/B.Tech
Batch : Any Batch
https://www.linkedin.com/jobs/view/3797415823/
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Sensata is Hiring !!
Role: Intern
Expected Stipend: 20k-40k per month
Apply here: https://sensata.wd1.myworkdayjobs.com/en-US/Sensata-Careers/job/Pune-India/Intern_IRC91727
Role: Intern
Expected Stipend: 20k-40k per month
Apply here: https://sensata.wd1.myworkdayjobs.com/en-US/Sensata-Careers/job/Pune-India/Intern_IRC91727
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Speer is Hiring !!
Roles:
- Frontend Developer
- Backend Developer
- React Native Developer
- App Developer (Android/iOS)
Base Salary: 19.4 - 41 LPA
Location: Remote ๐
Apply here- https://miro.com/app/board/uXjVMJK4wq0=/
Roles:
- Frontend Developer
- Backend Developer
- React Native Developer
- App Developer (Android/iOS)
Base Salary: 19.4 - 41 LPA
Location: Remote ๐
Apply here- https://miro.com/app/board/uXjVMJK4wq0=/
miro.com
Miro | The Visual Workspace for Innovation
Miro is a visual workspace for innovation where teams manage projects, design products, and build the future together. Join 60M+ users from around the world.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Zscaler is Hiring !!
Role: Associate Data Engineer
Experience: 0-3 Years
Location - Bangalore
Apply here- https://boards.greenhouse.io/zscaler/jobs/4190994007?gh_src=c9f3d7237&trid=2d92f286-613b-4daf-9dfa-6340ffbecf73&source=LinkedIn
Role: Associate Data Engineer
Experience: 0-3 Years
Location - Bangalore
Apply here- https://boards.greenhouse.io/zscaler/jobs/4190994007?gh_src=c9f3d7237&trid=2d92f286-613b-4daf-9dfa-6340ffbecf73&source=LinkedIn
job-boards.greenhouse.io
Zscaler
<p>Zscaler (NASDAQ: ZS) accelerates digital transformation so that customers can be more agile, efficient, resilient, and secure. The Zscaler Zero Trust Exchange is the companyโs cloud-native platform that protects thousands of customers from cyberattacksโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
UPDATE:
Read the Job Description and Apply only if eligible.
Since it's a remote startup, It's okay if you have less work experience but amazing portfolio.
https://forms.gle/7WyVfmNptZoY8Vhv9
Read the Job Description and Apply only if eligible.
Since it's a remote startup, It's okay if you have less work experience but amazing portfolio.
https://forms.gle/7WyVfmNptZoY8Vhv9
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Mercedes-Benz
Role: Intern
Batch eligible: 2024 and 2025 passouts
Apply: https://jobs.mercedes-benz.com/en/intern-2023-51169-MER0002CBX
Role: Intern
Batch eligible: 2024 and 2025 passouts
Apply: https://jobs.mercedes-benz.com/en/intern-2023-51169-MER0002CBX
Mercedes-Benz Group
Die gewรคhlte Stellenanzeige wurde nicht gefunden. | Mercedes-Benz Group
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Shadowfax
Role: Data Analytics Intern
Batch eligible: 2022, 2023 and 2024 passouts
Apply: https://docs.google.com/forms/d/e/1FAIpQLSem-oto0r0I4mATq2s1mpjsvSaqOD0IS5VZrM2nVVFe8V4COA/viewform
Role: Data Analytics Intern
Batch eligible: 2022, 2023 and 2024 passouts
Apply: https://docs.google.com/forms/d/e/1FAIpQLSem-oto0r0I4mATq2s1mpjsvSaqOD0IS5VZrM2nVVFe8V4COA/viewform
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Guidewire
Role: Software Engineer
Batch eligible: 2024 and 2025 passouts
Apply: https://jobs.lever.co/guidewire/e3d3df57-f9fb-4e5d-8aea-3692f5a72028
Role: Software Engineer
Batch eligible: 2024 and 2025 passouts
Apply: https://jobs.lever.co/guidewire/e3d3df57-f9fb-4e5d-8aea-3692f5a72028
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Bastian is Hiring !!
Role: Software Developer I
Expected CTC: 8-15 LPA
Apply here: https://recruiting.adp.com/srccar/public/RTI.home?c=1138141&d=BASCareerSite&rb=INDEED&r=5000830051506#/
Role: Software Developer I
Expected CTC: 8-15 LPA
Apply here: https://recruiting.adp.com/srccar/public/RTI.home?c=1138141&d=BASCareerSite&rb=INDEED&r=5000830051506#/
Did you get the test link for Google Apprenticeships?
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Finoability is looking forward to collaborate with the Placement Cells of Under-graduate & Post-graduate colleges across the country to recruit for the Summer Internship Programme 2024 in the field of Finance & Marketing.
Interested colleges are requested to kindly get in touch with us at hr@finoability.com
Interested colleges are requested to kindly get in touch with us at hr@finoability.com