Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Aveva
Role: Software Developer
Batch eligible: 2025 grads
Apply: https://aveva.wd3.myworkdayjobs.com/AVEVA_careers/job/Hyderabad-India/Software-Developer-Graduate--India_R008700
Role: Software Developer
Batch eligible: 2025 grads
Apply: https://aveva.wd3.myworkdayjobs.com/AVEVA_careers/job/Hyderabad-India/Software-Developer-Graduate--India_R008700
def conversionPermutation(n):
if n == 0:
return "0"
min_rep = None
digits = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
for b in range(2, min(n + 1, 37)):
rep = ""
temp = n
while temp > 0:
rep = digits[temp % b] + rep
temp //= b
if min_rep is None or rep < min_rep:
min_rep = rep
return min_rep
Conversion Permutation โ
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Sri Sri Tatva hiring for multiple Internship and Full Time roles.
https://docs.google.com/forms/d/e/1FAIpQLScRFpylPRal2_YCqbCbUobeLanNSnECHwWC_3umHwRXrl9IZA/viewform
https://docs.google.com/forms/d/e/1FAIpQLScRFpylPRal2_YCqbCbUobeLanNSnECHwWC_3umHwRXrl9IZA/viewform
#include <bits/stdc++.h>
using namespace std;
int main() {
int N;
cin >> N;
vector<int> array(N);
long long sum = 0;
for (int i = 0; i < N; ++i) {
std::cin >> array[i];
sum += array[i];
}
if (sum % N == 0) {
cout << "Yes\n";
} else {
int remainder = sum % N;
cout << "No " << remainder << '\n';
}
return 0;
}
Wabtec โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<ll> vll;
ll cost(ll r, ll c, ll j) {
return pow(r, 2) + j * c;
}
int main() {
ll l, c, n;
cin >> l >> c >> n;
vll v(n);
for (ll i = 0; i < n; ++i) {
cin >> v[i];
}
v.push_back(0);
v.push_back(l);
sort(v.begin(), v.end());
ll mini = LLONG_MAX;
ll best_jumps = 0;
ll best_range = 0;
for (ll i = 1; i < v.size(); ++i) {
ll r = v[i] - v[i - 1];
ll last_pos = 0;
ll j = 0;
bool f = true;
for (ll k = 1; k < v.size(); ++k) {
if (v[k] - last_pos > r) {
last_pos = v[k - 1];
j++;
if (v[k] - last_pos > r) {
f = false;
break;
}
}
}
if (f) {
j++;
ll total = cost(r, c, j);
if (total < mini) {
mini = total;
best_jumps = j;
best_range = r;
}
}
}
cout << mini << " " << best_jumps << " " << best_range << endl;
return 0;
}
Wabtec โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int getMaximumPower(vector<int> arr, vector<int> power) {
const long MOD = 1e9 + 7;
int n = arr.size();
int k = power.size();
vector<long long> prefix_sum(n + 1, 0);
for (int i = 1; i <= n; ++i) {
prefix_sum[i] = (prefix_sum[i - 1] + arr[i - 1]) % MOD;
}
sort(power.begin(), power.end());
long long ans = 0;
int i = 0;
int j = k - 1;
while (i < j) {
if (power[i] == 0) {
ans = (ans + prefix_sum[power[j] + 1]) % MOD;
} else {
ans = (ans + (prefix_sum[power[j] + 1] - prefix_sum[power[i]]) % MOD + MOD) % MOD;
}
i++;
j--;
}
return ans;
}
Expedia โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <vector>
using namespace std;
vector<vector<int>> computePrefixSum(const vector<vector<int>>& a) {
int n = a.size();
int m = a[0].size();
vector<vector<int>> prefix(n, vector<int>(m, 0));
for (int i = 0; i < n; ++i) {
for (int j = 0; j < m; ++j) {
prefix[i][j] = a[i][j];
if (i > 0) prefix[i][j] += prefix[i-1][j];
if (j > 0) prefix[i][j] += prefix[i][j-1];
if (i > 0 && j > 0) prefix[i][j] -= prefix[i-1][j-1];
}
}
return prefix;
}
vector<vector<int>> findMatrix(const vector<vector<int>>& a) {
vector<vector<int>> prefix = computePrefixSum(a);
int n = a.size();
int m = a[0].size();
vector<vector<int>> b(n, vector<int>(m, 0));
for (int i = 0; i < n; ++i) {
for (int j = 0; j < m; ++j) {
b[i][j] = prefix[i][j];
}
}
return b;
}
Meesho โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
int getMinMachines(vector<int> start,vector<int> end){
int n = start.size();
sort(start.begin(),start.end());
sort(end.begin(),end.end());
int i = 0 , j = 0;
int maxi = 0;
int curr = 0;
while(i < n && j < n){
if(start[i] <= end[j]) i++ , curr++;
else j++ , curr--;
maxi = max(curr,maxi);
}
return maxi;
}
Expedia โ
int n = start.size();
sort(start.begin(),start.end());
sort(end.begin(),end.end());
int i = 0 , j = 0;
int maxi = 0;
int curr = 0;
while(i < n && j < n){
if(start[i] <= end[j]) i++ , curr++;
else j++ , curr--;
maxi = max(curr,maxi);
}
return maxi;
}
Expedia โ
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Ocrolus East Hiring Data Verifier โค๏ธโค๏ธโค๏ธ
Job Role: Data Verifier
Qualifications: Any Graduate
Experience: 0-5 years
Job Type: Full Time
Location: Noida
Salary: 3 to 5 LPA
Skills/Requirements:
1. Review Documents of different formats and quality
2. Correct or Edit any incorrect details captured by the Ocrolus proprietary systems
3. Perform reconciliation of various amounts captured from reviewed documents to ensure high accuracy and identify discrepancies
4. Basic Understanding of financial documents and Terminologies.
5. Understanding basic accounting concepts would be an added advantage.
Date of offline Interview: 20th August, 2024
Time : 11.00 AM โ 2.00 PM
Address: Ocrolus East Private Limited, A-61, 2nd Floor, ASF Building, Sector 63, Noida- 201301
Job Role: Data Verifier
Qualifications: Any Graduate
Experience: 0-5 years
Job Type: Full Time
Location: Noida
Salary: 3 to 5 LPA
Skills/Requirements:
1. Review Documents of different formats and quality
2. Correct or Edit any incorrect details captured by the Ocrolus proprietary systems
3. Perform reconciliation of various amounts captured from reviewed documents to ensure high accuracy and identify discrepancies
4. Basic Understanding of financial documents and Terminologies.
5. Understanding basic accounting concepts would be an added advantage.
Date of offline Interview: 20th August, 2024
Time : 11.00 AM โ 2.00 PM
Address: Ocrolus East Private Limited, A-61, 2nd Floor, ASF Building, Sector 63, Noida- 201301
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
BITCS is hiring for Software Engineer Intern
2025 batch passouts
15 k per month intern + 6 - 8 LPA after PPO
Apply Fast : https://docs.google.com/forms/d/e/1FAIpQLSe9Puj1jZF968qKYIgwNYn6SOmyNn75gp7eCoOhk_bNvmPqJw/viewform?pli=1
2025 batch passouts
15 k per month intern + 6 - 8 LPA after PPO
Apply Fast : https://docs.google.com/forms/d/e/1FAIpQLSe9Puj1jZF968qKYIgwNYn6SOmyNn75gp7eCoOhk_bNvmPqJw/viewform?pli=1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Anthology Hiring !!
Exp - 0 to 2 year
Role - Associate Software Engineer
https://jobs.jobvite.com/anthology/job/ovv9ufwn?__jvst=Job%20Board
Exp - 0 to 2 year
Role - Associate Software Engineer
https://jobs.jobvite.com/anthology/job/ovv9ufwn?__jvst=Job%20Board
๐2
Happy Independence Day ๐ฎ๐ณ
โค7๐1