Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Only 2024 Batch
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Saama Technologies is Hiring !!
Role: Software Engineer (UI Developer)
Expected CTC: 6-12 Lpa
Location: Pune
Apply here- https://jobs.jobvite.com/saama/job/oFeEofwF
Role: Software Engineer (UI Developer)
Expected CTC: 6-12 Lpa
Location: Pune
Apply here- https://jobs.jobvite.com/saama/job/oFeEofwF
One block
C++โ
C++โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐ Do you want to launch a career in Data Analytics in a top MNC right after college?๐ฏ
Join our webinar to understand the Data Analytics domain, job opportunities and the skills needed as a recent graduate to crack a role from a highly experienced speaker.
๐ Save the date: Today at 04:00 PM IST ๐ โฐ
๐๏ธ Register for FREE (Limited seats available): https://bit.ly/3M6UA4l ๐๐๏ธ
Join our webinar to understand the Data Analytics domain, job opportunities and the skills needed as a recent graduate to crack a role from a highly experienced speaker.
๐ Save the date: Today at 04:00 PM IST ๐ โฐ
๐๏ธ Register for FREE (Limited seats available): https://bit.ly/3M6UA4l ๐๐๏ธ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <bits/stdc++.h>
using namespace std;
int solve(int arr[], int n){
int pos[n], p = 0;
for(int i=0;i<n;i++){
if(arr[i] == 1){
pos[p] = i + 1;
p++;
}
}
if(p == 0) return 0;
int res = 1;
for(int i=0;i<p-1;i++){
res *= pos[i+1]-pos[i];
}
return res;
}
int main(){
int n;
cin >> n;
int arr[n];
for(int i=0;i<n;i++){
cin>>arr[i];
}
cout<<solve(arr, n);
return 0;
}
One Block โ
using namespace std;
int solve(int arr[], int n){
int pos[n], p = 0;
for(int i=0;i<n;i++){
if(arr[i] == 1){
pos[p] = i + 1;
p++;
}
}
if(p == 0) return 0;
int res = 1;
for(int i=0;i<p-1;i++){
res *= pos[i+1]-pos[i];
}
return res;
}
int main(){
int n;
cin >> n;
int arr[n];
for(int i=0;i<n;i++){
cin>>arr[i];
}
cout<<solve(arr, n);
return 0;
}
One Block โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Deloitte
Role: Analyst Trainee
Batch eligible: 2024 grads only
Apply: https://bit.ly/46XiJlR
Role: Analyst Trainee
Batch eligible: 2024 grads only
Apply: https://bit.ly/46XiJlR
Deloitte
Open Talent Network by Risk & Financial Advisory - Deloitte US-India Offices
Deloitte US-India Offices' Risk and Financial Advisory presents Open Talent Network 3.0 - for all final-year students looking for career opportunities.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: MAQ Software
Role: Software Engineer
Batch eligible: 2021, 2022 and 2023 grads
Apply: https://docs.google.com/forms/d/e/1FAIpQLSdCCiiMtnExn7YYvUN-oZDKIURM75YirmnBryEZPLI1kbKaKA/viewform
Role: Software Engineer
Batch eligible: 2021, 2022 and 2023 grads
Apply: https://docs.google.com/forms/d/e/1FAIpQLSdCCiiMtnExn7YYvUN-oZDKIURM75YirmnBryEZPLI1kbKaKA/viewform
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Mercedes-Benz is Hiring
Role: Software Engineer- Fresher
Experience: 2023
Apply here-
https://jobs.mercedes-benz.com/en/software-engineer-84692-MER0002HDB
Role: Software Engineer- Fresher
Experience: 2023
Apply here-
https://jobs.mercedes-benz.com/en/software-engineer-84692-MER0002HDB
Mercedes-Benz Group
Die gewรคhlte Stellenanzeige wurde nicht gefunden. | Mercedes-Benz Group
Minimum keysโ
vector<int> counts(const vector<int>& ListA, const vector<int>& ListB) {
int m = ListA.size();
int n = ListB.size();
vector<int> ans;
vector<int> sortedListA = ListA;
sort(sortedListA.begin(), sortedListA.end());
for (int i = 0; i < n; i++) {
auto it = upper_bound(sortedListA.begin(), sortedListA.end(), ListB[i]);
int cnt = it - sortedListA.begin();
ans.push_back(cnt);
}
return ans;
}
Twillo โ
int m = ListA.size();
int n = ListB.size();
vector<int> ans;
vector<int> sortedListA = ListA;
sort(sortedListA.begin(), sortedListA.end());
for (int i = 0; i < n; i++) {
auto it = upper_bound(sortedListA.begin(), sortedListA.end(), ListB[i]);
int cnt = it - sortedListA.begin();
ans.push_back(cnt);
}
return ans;
}
Twillo โ