Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Hiring for a Backend + Content Intern at Proelevate.
Prime responsibilities include backend and strong hold over core CS Subjects.
โจRemote Opportunity
Eligibility : 2025,2026 passouts
Apply Link & Details: https://www.proelevate.in/job/backend-developer-proelevate-609847
Prime responsibilities include backend and strong hold over core CS Subjects.
โจRemote Opportunity
Eligibility : 2025,2026 passouts
Apply Link & Details: https://www.proelevate.in/job/backend-developer-proelevate-609847
ProElevate
Your one-stop destination for DSA practice, interview experiences, and career opportunities.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Cencora is hiring for SDE
For 2022, 2023, 2024 grads
Experience: 0 - 2 years
Location: Pune
๐ปApply:
https://careers.cencora.com/us/en/job/CHKCENUSR249350EXTERNALENUS/Software-Engineer
For 2022, 2023, 2024 grads
Experience: 0 - 2 years
Location: Pune
๐ปApply:
https://careers.cencora.com/us/en/job/CHKCENUSR249350EXTERNALENUS/Software-Engineer
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
ScaleneWorks hiring Associate Software Engineer
0-1 year experience
Apply Here : https://www.hirewand.com/r/job/110535987?sid=60488d09f4186b6923717b20&cpid=1105&uid=null&src=jobpost
0-1 year experience
Apply Here : https://www.hirewand.com/r/job/110535987?sid=60488d09f4186b6923717b20&cpid=1105&uid=null&src=jobpost
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Meesho hiring for Business Analyst
0-1 year experience
Apply Here : https://www.meesho.io/jobs/business-analyst---2024?id=a33be922-bd1f-41de-b865-6198f1f50ac6
0-1 year experience
Apply Here : https://www.meesho.io/jobs/business-analyst---2024?id=a33be922-bd1f-41de-b865-6198f1f50ac6
www.meesho.io
Meesho Careers: undefined
Your chance to reimagine commerce for bharat
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
bool canRobAll(const vector<int>& houses, int H, int K) {
int hours_needed = 0;
for (int house_count : houses) {
hours_needed += (house_count + K - 1) / K; // Ceiling division
}
return hours_needed <= H;
}
int main() {
int N, H;
cin >> N >> H;
vector<int> A(N);
for (int i = 0; i < N; i++) {
cin >> A[i];
}
int left = 1;
int right = *max_element(A.begin(), A.end());
while (left < right) {
int mid = left + (right - left) / 2;
if (canRobAll(A, H, mid)) {
right = mid;
} else {
left = mid + 1;
}
}
cout << left << endl;
return 0;
}
//Richies World
Flipkart โ
#include <vector>
#include <algorithm>
using namespace std;
bool canRobAll(const vector<int>& houses, int H, int K) {
int hours_needed = 0;
for (int house_count : houses) {
hours_needed += (house_count + K - 1) / K; // Ceiling division
}
return hours_needed <= H;
}
int main() {
int N, H;
cin >> N >> H;
vector<int> A(N);
for (int i = 0; i < N; i++) {
cin >> A[i];
}
int left = 1;
int right = *max_element(A.begin(), A.end());
while (left < right) {
int mid = left + (right - left) / 2;
if (canRobAll(A, H, mid)) {
right = mid;
} else {
left = mid + 1;
}
}
cout << left << endl;
return 0;
}
//Richies World
Flipkart โ
int countOverlappingPairs(vector<pair<int, int>>& ranges) {
// Sort ranges by their left boundary
sort(ranges.begin(), ranges.end());
int n = ranges.size();
int count = 0;
// Check for overlap between adjacent ranges
for (int i = 0; i < n - 1; ++i) {
// If the end of the current range is greater than the start of the next range
if (ranges[i].second >= ranges[i + 1].first) {
count++;
}
}
return count;
}
Secure the kingdom โ
// Sort ranges by their left boundary
sort(ranges.begin(), ranges.end());
int n = ranges.size();
int count = 0;
// Check for overlap between adjacent ranges
for (int i = 0; i < n - 1; ++i) {
// If the end of the current range is greater than the start of the next range
if (ranges[i].second >= ranges[i + 1].first) {
count++;
}
}
return count;
}
Secure the kingdom โ
๐1
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <bits/stdc++.h>
using namespace std;
#define int long long
double solve(vector<int> &a, vector<int> &b)
{
int N = a.size();
vector<double>temp;
for(int i=0;i<N;i++){
temp.push_back((double)a[i]/94.0);
}
vector<int>temp1;
for(int i=1;i<N;i++){
temp1.push_back(b[i]-b[i-1]);
}
double sum=0;
for(int i=0;i<temp1.size();i++){
sum+=temp1[i]/temp[i+1];
}
return sum/temp1.size();
}
int32_t main() {
int n;
cin >> n;
vector<int> a(n);
for (int i = 0; i < n; i++) {
cin >> a[i];
}
vector<int>b(n);
for(int i=0;i<n;i++){
cin>>b[i];
}
double ans = solve(a,b);
cout << fixed << setprecision(2);
cout << ans << endl;
return 0;
}
//Bob has petrol car
Flipkart โ
using namespace std;
#define int long long
double solve(vector<int> &a, vector<int> &b)
{
int N = a.size();
vector<double>temp;
for(int i=0;i<N;i++){
temp.push_back((double)a[i]/94.0);
}
vector<int>temp1;
for(int i=1;i<N;i++){
temp1.push_back(b[i]-b[i-1]);
}
double sum=0;
for(int i=0;i<temp1.size();i++){
sum+=temp1[i]/temp[i+1];
}
return sum/temp1.size();
}
int32_t main() {
int n;
cin >> n;
vector<int> a(n);
for (int i = 0; i < n; i++) {
cin >> a[i];
}
vector<int>b(n);
for(int i=0;i<n;i++){
cin>>b[i];
}
double ans = solve(a,b);
cout << fixed << setprecision(2);
cout << ans << endl;
return 0;
}
//Bob has petrol car
Flipkart โ
from collections import defaultdict
def sp(N, K, A):
if K > N:
return 0
freq = defaultdict(int)
total_abs_diff = 0
for i in range(K):
freq[A[i]] += 1
first_element = A[0]
last_element = A[K-1]
total_abs_diff += abs(freq[last_element] - freq[first_element])
for i in range(1, N-K+1):
old_element = A[i-1]
freq[old_element] -= 1
if freq[old_element] == 0:
del freq[old_element]
new_element = A[i+K-1]
freq[new_element] += 1
first_element = A[i]
last_element = A[i+K-1]
total_abs_diff += abs(freq[last_element] - freq[first_element])
return total_abs_diff
N, K = map(int, input().split())
A = list(map(int, input().split()))
result = sp(N, K, A)
print(result)
Flipkart โ
๐1
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int SS(const string& rollNumber) {
int num = 0;
for (char c : rollNumber) {
if (isdigit(c)) {
num = num * 10 + (c - '0');
}
}
return num;
}
bool compare(const pair<string, int>& a, const pair<string, int>& b) {
string classA = "", classB = "";
int numA = SS(a.first);
int numB = SS(b.first);
for (char c : a.first) {
if (isalpha(c)) classA += c;
else break;
}
for (char c : b.first) {
if (isalpha(c)) classB += c;
else break;
}
if (classA == classB) return numA < numB;
return classA < classB;
}
int main() {
int N;
cin >> N;
vector<pair<string, int>> students(N);
for (int i = 0; i < N; ++i) {
cin >> students[i].first >> students[i].second;
}
sort(students.begin(), students.end(), compare);
for (const auto& student : students) {
cout << student.first << " " << student.second << endl;
}
return 0;
}
Flipkart โ
#include <vector>
#include <algorithm>
using namespace std;
int SS(const string& rollNumber) {
int num = 0;
for (char c : rollNumber) {
if (isdigit(c)) {
num = num * 10 + (c - '0');
}
}
return num;
}
bool compare(const pair<string, int>& a, const pair<string, int>& b) {
string classA = "", classB = "";
int numA = SS(a.first);
int numB = SS(b.first);
for (char c : a.first) {
if (isalpha(c)) classA += c;
else break;
}
for (char c : b.first) {
if (isalpha(c)) classB += c;
else break;
}
if (classA == classB) return numA < numB;
return classA < classB;
}
int main() {
int N;
cin >> N;
vector<pair<string, int>> students(N);
for (int i = 0; i < N; ++i) {
cin >> students[i].first >> students[i].second;
}
sort(students.begin(), students.end(), compare);
for (const auto& student : students) {
cout << student.first << " " << student.second << endl;
}
return 0;
}
Flipkart โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
import java.util.*;
public class Main {
public static double calculateTax(double income) {
double tax = 0.0;
if (income <= 50000) {
tax = income * 0.10;
} else if (income <= 100000) {
tax = 50000 * 0.10 + (income - 50000) * 0.20;
} else {
tax = 50000 * 0.10 + 50000 * 0.20 + (income - 100000) * 0.30;
}
return tax;
}
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int n = scanner.nextInt();
if (n == 0) {
System.out.println(-1);
return;
}
int noTaxIndex = scanner.nextInt();
int doubleTaxIndex = scanner.nextInt();
int discountTaxIndex = scanner.nextInt();
Map<Integer, Double> houseIncomes = new HashMap<>();
for (int i = 0; i < n; i++) {
int houseNumber = scanner.nextInt();
double income = scanner.nextDouble();
houseIncomes.put(houseNumber, income);
}
double totalTax = 0.0;
for (Map.Entry<Integer, Double> entry : houseIncomes.entrySet()) {
double income = entry.getValue();
double tax = calculateTax(income);
if (entry.getKey() == noTaxIndex) {
tax = 0;
} else if (entry.getKey() == doubleTaxIndex) {
tax *= 2;
} else if (entry.getKey() == discountTaxIndex) {
tax *= 0.90;
}
totalTax += tax;
}
System.out.println(Math.round(totalTax));
}
}
Flipkart โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <iostream>
#include <vector>
#include <unordered_map>
#include <climits>
using namespace std;
vector<string> findSmallestSubchain(vector<string>& a, vector<string>& b) {
unordered_map<string, int> c;
unordered_map<string, int> d;
for (const string& e : b) {
c[e]++;
}
int e = c.size();
int f = 0;
int g = 0, h = 0;
int i = INT_MAX;
int j = -1;
while (h < a.size()) {
string k = a[h];
d[k]++;
if (c.find(k) != c.end() && d[k] == c[k]) {
f++;
}
while (g <= h && f == e) {
string l = a[g];
if (h - g + 1 < i) {
i = h - g + 1;
j = g;
}
d[l]--;
if (c.find(l) != c.end() && d[l] < c[l]) {
f--;
}
g++;
}
h++;
}
if (i == INT_MAX) {
return {};
}
vector<string> m(a.begin() + j, a.begin() + j + i);
return m;
}
Devere โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Nutanix is hiring for MTS-1
Experience: 0.6 - 1 year's
Expected Salary: 20-30 LPA
Apply here: https://nutanix.eightfold.ai/careers/job/24768404?_jvsd=LinkedIn&domain=nutanix.com&jvst=Job+Board
Experience: 0.6 - 1 year's
Expected Salary: 20-30 LPA
Apply here: https://nutanix.eightfold.ai/careers/job/24768404?_jvsd=LinkedIn&domain=nutanix.com&jvst=Job+Board
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Genpact Virtual Interview
For Hyderabad
Direct Link to join the Interview tomorrow i.e. 12.09.2024 at 11: 30 AM- https://genpact.zoom.us/j/2344316691
For Hyderabad
Direct Link to join the Interview tomorrow i.e. 12.09.2024 at 11: 30 AM- https://genpact.zoom.us/j/2344316691
Zoom Video
Join our Cloud HD Video Meeting
Zoom is the leader in modern enterprise video communications, with an easy, reliable cloud platform for video and audio conferencing, chat, and webinars across mobile, desktop, and room systems. Zoom Rooms is the original software-based conference room solutionโฆ
๐2
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Coretus Technologies Hiring
Want something more than just a conventional tech role? How about creating the next frontier in AI? ๐ค
1. Business Analyst (Apply here: https://www.coretus.com/career/business-analyst)
2. ReactJS Developer (Apply here: https://www.coretus.com/career/reactjs-developer)
3. NodeJS Developer (Apply here: https://www.coretus.com/career/nodejs-developer)
4. Flutter Developer (Apply here: https://www.coretus.com/career/flutter-developer)
5. Python Developer (Apply here: https://www.coretus.com/career/python-developer)
๐ Location: Rajkot, Gujarat
Got some more questions? Reach out to us on +91-7861077977
For more information, visit: https://www.coretus.com/career
Want something more than just a conventional tech role? How about creating the next frontier in AI? ๐ค
1. Business Analyst (Apply here: https://www.coretus.com/career/business-analyst)
2. ReactJS Developer (Apply here: https://www.coretus.com/career/reactjs-developer)
3. NodeJS Developer (Apply here: https://www.coretus.com/career/nodejs-developer)
4. Flutter Developer (Apply here: https://www.coretus.com/career/flutter-developer)
5. Python Developer (Apply here: https://www.coretus.com/career/python-developer)
๐ Location: Rajkot, Gujarat
Got some more questions? Reach out to us on +91-7861077977
For more information, visit: https://www.coretus.com/career
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
We, at Sub-Same-Day team of Amazon, have two openings for the role of Junior Business Analyst. In this role, you'll play a key role in supporting our efforts to optimize delivery processes and enhance the customer experience.
Who We're Looking For:
ยท Recent graduate or early career professional with 0-2 years of experience.
ยท Strong analytical and problem-solving skills with a passion for data-driven decision making.
ยท Proficient in advanced SQL
ยท Experience with Python or R is a plus.
Location : Bengaluru (hybrid)
If youโre interested, please mail your resume, along with a short description of your experience in analytics (professional or academic) to kriti.13.sahu@gmail.com.
Freshers are welcome to apply.
I will update this post with official JD
within a few days.
Who We're Looking For:
ยท Recent graduate or early career professional with 0-2 years of experience.
ยท Strong analytical and problem-solving skills with a passion for data-driven decision making.
ยท Proficient in advanced SQL
ยท Experience with Python or R is a plus.
Location : Bengaluru (hybrid)
If youโre interested, please mail your resume, along with a short description of your experience in analytics (professional or academic) to kriti.13.sahu@gmail.com.
Freshers are welcome to apply.
I will update this post with official JD
within a few days.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
https://www.linkedin.com/posts/insha-suhail-12b3b81b4_hiring-hcltech-hrfresher-activity-7239590909623853056-Jmmt?utm_source=share&utm_medium=member_desktop
Hi Connections,
HCLTech is currently seeking a dedicated HR Executive to join our team!
Position: HR Executive
Experience: Fresher (0-6 months)
Shift: Day Shift (9:30 AM - 6:30 PM)
Working Days: 5 days a week from office
Location: Noida, Sector 60
If youโre passionate about starting your career in HR, please feel free to DM me your resume.
We look forward to hearing from you
Hi Connections,
HCLTech is currently seeking a dedicated HR Executive to join our team!
Position: HR Executive
Experience: Fresher (0-6 months)
Shift: Day Shift (9:30 AM - 6:30 PM)
Working Days: 5 days a week from office
Location: Noida, Sector 60
If youโre passionate about starting your career in HR, please feel free to DM me your resume.
We look forward to hearing from you
Linkedin
Insha Suhail on LinkedIn: #hiring #hcltech #hrfresher | 47 comments
Hi Connections,
HCLTech is currently seeking a dedicated HR Executive to join our team!
Position: HR Executive
Experience: Fresher (0-6 months)
Shift:โฆ | 47 comments on LinkedIn
HCLTech is currently seeking a dedicated HR Executive to join our team!
Position: HR Executive
Experience: Fresher (0-6 months)
Shift:โฆ | 47 comments on LinkedIn