Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Llyod Hiring fresher !
Role - Data Analyst
Exp CTC - 10 lpa
Key Skills - Python, SQL, Java, Scala or Go
Link - https://amslbg.avature.net/careers/JobDetail/Hyderabad-Telangana-India-Data-Analyst/4345
Role - Data Analyst
Exp CTC - 10 lpa
Key Skills - Python, SQL, Java, Scala or Go
Link - https://amslbg.avature.net/careers/JobDetail/Hyderabad-Telangana-India-Data-Analyst/4345
Lloyds Technology Centre
LTC - Careers Portal
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
def getMaximumLength(lotteryID, winnerID, k):
m, n = len(lotteryID), len(winnerID)
dp = [[[0] * n for _ in range(m)] for _ in range(k + 1)]
for o in range(k + 1):
for i in range(m):
for j in range(n):
c1, c2 = lotteryID[i], winnerID[j]
abs_diff = abs(ord(c1) - ord(c2))
diff = (26 - abs_diff if abs_diff > 13 else abs_diff)
if o > 0:
dp[o][i][j] = max(dp[o][i][j], dp[o - 1][i][j])
if i > 0:
dp[o][i][j] = max(dp[o][i][j], dp[o][i - 1][j])
if j > 0:
dp[o][i][j] = max(dp[o][i][j], dp[o][i][j - 1])
if o - diff >= 0:
if i > 0 and j > 0:
dp[o][i][j] = max(dp[o][i][j], dp[o - diff][i - 1][j - 1] + 1)
else:
dp[o][i][j] = 1 # if i or j==0 and it is possible to use a move then string can only match 1 char
return dp[k][m - 1][n - 1]
Source : Winner โ
m, n = len(lotteryID), len(winnerID)
dp = [[[0] * n for _ in range(m)] for _ in range(k + 1)]
for o in range(k + 1):
for i in range(m):
for j in range(n):
c1, c2 = lotteryID[i], winnerID[j]
abs_diff = abs(ord(c1) - ord(c2))
diff = (26 - abs_diff if abs_diff > 13 else abs_diff)
if o > 0:
dp[o][i][j] = max(dp[o][i][j], dp[o - 1][i][j])
if i > 0:
dp[o][i][j] = max(dp[o][i][j], dp[o][i - 1][j])
if j > 0:
dp[o][i][j] = max(dp[o][i][j], dp[o][i][j - 1])
if o - diff >= 0:
if i > 0 and j > 0:
dp[o][i][j] = max(dp[o][i][j], dp[o - diff][i - 1][j - 1] + 1)
else:
dp[o][i][j] = 1 # if i or j==0 and it is possible to use a move then string can only match 1 char
return dp[k][m - 1][n - 1]
Source : Winner โ
vector<int> getNetProfit(vector<string> e) {
unordered_map<string, int> p;
unordered_map<string, int> q;
vector<int> r;
int b = 0;
for (const auto& v : e) {
istringstream i(v);
string a, s;
int x;
i >> a >> s >> x;
if (a == "BUY") {
b -= p[s] * x;
q[s] += x;
} else if (a == "SELL") {
b += p[s] * x;
q[s] -= x;
} else if (a == "CHANGE") {
b += q[s] * x;
p[s] += x;
} else if (a == "QUERY") {
r.push_back(b);
}
}
return r;
}
Source : Hola โ
unordered_map<string, int> p;
unordered_map<string, int> q;
vector<int> r;
int b = 0;
for (const auto& v : e) {
istringstream i(v);
string a, s;
int x;
i >> a >> s >> x;
if (a == "BUY") {
b -= p[s] * x;
q[s] += x;
} else if (a == "SELL") {
b += p[s] * x;
q[s] -= x;
} else if (a == "CHANGE") {
b += q[s] * x;
p[s] += x;
} else if (a == "QUERY") {
r.push_back(b);
}
}
return r;
}
Source : Hola โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Cashfree Payments
Role: Technical Solution Engineer -1
Eligibility: those who are good in communication and proficient in Java, SQL having atleast 6 months of internship experience.
Apply: https://docs.google.com/forms/d/e/1FAIpQLScfV88cFtnZZDwP7SepjHdUqrfBPDqvjf906XUYH4nj6jSD8g/viewform
Role: Technical Solution Engineer -1
Eligibility: those who are good in communication and proficient in Java, SQL having atleast 6 months of internship experience.
Apply: https://docs.google.com/forms/d/e/1FAIpQLScfV88cFtnZZDwP7SepjHdUqrfBPDqvjf906XUYH4nj6jSD8g/viewform
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Airbus
Role: Data Analyst Intern
Batch eligible: 2024 and 2025 grads
Apply: https://ag.wd3.myworkdayjobs.com/en-US/Airbus/job/Bangalore-Area/Intern_JR10240511
Role: Data Analyst Intern
Batch eligible: 2024 and 2025 grads
Apply: https://ag.wd3.myworkdayjobs.com/en-US/Airbus/job/Bangalore-Area/Intern_JR10240511
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Zennode Technologies
Role: Junior Software Engineer
Batch eligible: 2022 and 2023 grads
Apply: https://www.zennode.com/jobs/junior-software-developer/
Role: Junior Software Engineer
Batch eligible: 2022 and 2023 grads
Apply: https://www.zennode.com/jobs/junior-software-developer/
Zennode Technologies
Junior Software Developer - Zennode Technologies
As a Junior Software Developer at Zennode Technologies, you will work closely with our development...
bool isMatch(string& text, string& pat) {
int textLen = text.length();
int patLen = pat.length();
if (patLen != textLen) {
return false;
}
for (int i = 0; i < textLen; ++i) {
if (pat[i] != '*' && pat[i] != text[i]) {
return false;
}
}
return true;
}
vector<string> matchStrings(vector<string> text, vector<string> pat) {
vector<string> result;
for (int i = 0; i < text.size(); ++i) {
if (isMatch(text[i], pat[i])) {
result.push_back("YES");
} else {
result.push_back("NO");
}
}
return result;
}
//Amazon Qs 1โ
int textLen = text.length();
int patLen = pat.length();
if (patLen != textLen) {
return false;
}
for (int i = 0; i < textLen; ++i) {
if (pat[i] != '*' && pat[i] != text[i]) {
return false;
}
}
return true;
}
vector<string> matchStrings(vector<string> text, vector<string> pat) {
vector<string> result;
for (int i = 0; i < text.size(); ++i) {
if (isMatch(text[i], pat[i])) {
result.push_back("YES");
} else {
result.push_back("NO");
}
}
return result;
}
//Amazon Qs 1โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Deloitte NLA Mega Engineering Hiring:
Role: Analyst Trainee
Eligibility: BE / B Tech / ME / M Tech / MCA
Stream: CS, IT and Circuital branches
Graduation Year: 2024
Must Have: Aggregate 60% or equivalent CGPA of 6.5 and above
Expected Salary: 6 LPA
Apply Link: https://deloitteconsultingnla.hirepro.in/engineeringhiring.html
Role: Analyst Trainee
Eligibility: BE / B Tech / ME / M Tech / MCA
Stream: CS, IT and Circuital branches
Graduation Year: 2024
Must Have: Aggregate 60% or equivalent CGPA of 6.5 and above
Expected Salary: 6 LPA
Apply Link: https://deloitteconsultingnla.hirepro.in/engineeringhiring.html
def findMinimumOperations(boxes):
total_boxes = sum(boxes)
average_boxes = total_boxes // len(boxes)
extra_piles = total_boxes % len(boxes)
operations = 0
for box_count in boxes:
difference = box_count - average_boxes
if difference > 0:
operations += difference
if extra_piles > 0:
operations -= 1
extra_piles -= 1
return operations
Amazon โ
total_boxes = sum(boxes)
average_boxes = total_boxes // len(boxes)
extra_piles = total_boxes % len(boxes)
operations = 0
for box_count in boxes:
difference = box_count - average_boxes
if difference > 0:
operations += difference
if extra_piles > 0:
operations -= 1
extra_piles -= 1
return operations
Amazon โ
#include<bits/stdc++.h>
using namespace std;
bool check(vector<int>& v) {
for(int i = 1; i < v.size(); i++) {
if(v[i] % 2 == v[i-1] % 2) return false;
}
return true;
}
void solve(int n) {
vector<int> v(n);
iota(v.begin(), v.end(), 1);
do {
if(check(v)) {
for(int i = 0; i < n; i++) {
cout << v[i] << " ";
}
cout << "\n";
}
} while(next_permutation(v.begin(), v.end()));
}
int main() {
int n;
cin >> n;
solve(n);
return 0;
}
Meesho โ
using namespace std;
bool check(vector<int>& v) {
for(int i = 1; i < v.size(); i++) {
if(v[i] % 2 == v[i-1] % 2) return false;
}
return true;
}
void solve(int n) {
vector<int> v(n);
iota(v.begin(), v.end(), 1);
do {
if(check(v)) {
for(int i = 0; i < n; i++) {
cout << v[i] << " ";
}
cout << "\n";
}
} while(next_permutation(v.begin(), v.end()));
}
int main() {
int n;
cin >> n;
solve(n);
return 0;
}
Meesho โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
JOB OPENING UPDATE
Company โ Outscal
Role โ Data Analyst
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3808136260
Company โ MobileWorld Vadodara
Role โ Data Analyst
Exp. โ Fresher or 2yrs
Apply Here โ https://www.simplyhired.co.in/job/v2EOhk9tHARNM976W87UDNj2NssxTDuVy4UnYtenuzJ_w2NXNEdLDA
Company โ Virtusa
Role โ Data Engineer
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3807584624
Company โ Bureau
Role โ Data Engineering Intern
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3807286769
Company โ MedTourEasy
Role โ Data Analysis Trainee
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3808140227
Company โ Energy Alternatives India
Role โ AI For Climate Research
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/ai-for-climate-research-internship-in-chennai-at-energy-alternatives-india1705387859?utm_source=cp_link&referral=web_share
Company โ Faclon
Role โ Data Science Intern
Exp. โFresher
Apply Here โ https://internshala.com/internship/detail/data-science-internship-in-mumbai-at-faclon1705298889?utm_source=cp_link&referral=web_share
Company โ Binford Research Labs pvt ltd
Role โ Artificial Intelligence
Exp. โ Fresher
Apply Here โ https://www.simplyhired.co.in/job/rWGTWDvTRKMxe6aIlevL06tZYOHLxlzInjBkq4DPUmZtUpE2LE1JCA
Company โ Outscal
Role โ Data Analyst
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3808136260
Company โ MobileWorld Vadodara
Role โ Data Analyst
Exp. โ Fresher or 2yrs
Apply Here โ https://www.simplyhired.co.in/job/v2EOhk9tHARNM976W87UDNj2NssxTDuVy4UnYtenuzJ_w2NXNEdLDA
Company โ Virtusa
Role โ Data Engineer
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3807584624
Company โ Bureau
Role โ Data Engineering Intern
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3807286769
Company โ MedTourEasy
Role โ Data Analysis Trainee
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3808140227
Company โ Energy Alternatives India
Role โ AI For Climate Research
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/ai-for-climate-research-internship-in-chennai-at-energy-alternatives-india1705387859?utm_source=cp_link&referral=web_share
Company โ Faclon
Role โ Data Science Intern
Exp. โFresher
Apply Here โ https://internshala.com/internship/detail/data-science-internship-in-mumbai-at-faclon1705298889?utm_source=cp_link&referral=web_share
Company โ Binford Research Labs pvt ltd
Role โ Artificial Intelligence
Exp. โ Fresher
Apply Here โ https://www.simplyhired.co.in/job/rWGTWDvTRKMxe6aIlevL06tZYOHLxlzInjBkq4DPUmZtUpE2LE1JCA
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐UrbanMatch is Hiring !!
Role: Full Stack Developer
Location: Remote
Salary: 30k - 40k/month
๐Apply here: https://www.linkedin.com/jobs/view/3792361532/
Role: Full Stack Developer
Location: Remote
Salary: 30k - 40k/month
๐Apply here: https://www.linkedin.com/jobs/view/3792361532/
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Saiful kabir on LinkedIn: #fresher #fresher #cloudspecialist #cloudoperations #freshers | 290 comments
Hi All,
NOT ACCEPTING ANY MORE PROFILES/Resumes. Already got 1000+ resumes. Stay tuned for next fresher opening shortly. Keep in touch.
Job Location: Remoteโฆ | 290 comments on LinkedIn
NOT ACCEPTING ANY MORE PROFILES/Resumes. Already got 1000+ resumes. Stay tuned for next fresher opening shortly. Keep in touch.
Job Location: Remoteโฆ | 290 comments on LinkedIn
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Amazon India Hiring
Amazon Web Services - AWS is hiring for Cloud Support Associate (CSA). As a CSA, you'll solve customer cases using advanced troubleshooting techniques, providing tailored solutions and driving customer interactions.
Permanent WFH - Work From Home. Good Work Life Balance. Good pay.
What qualifications/skills are we looking for?
- Bachelorโs Degree in Engineering or MCA - 2023 Graduates ONLY
- 0-1 years of experience in Linux/Windows Systems administration OR Database design and Optimization OR BigData Analysis OR Network administration OR Dev-ops. (no relevant experience also works but would be a plus)
Job link - https://amazon.jobs/en/jobs/2469306/cloud-support-associate
P.S. - You would be tested on your Computer Networking & Operating Systems concept (the college subjects, yes). So, if you are proficient with the same. It would be a cake walk to clear the interviews.
Amazon Web Services - AWS is hiring for Cloud Support Associate (CSA). As a CSA, you'll solve customer cases using advanced troubleshooting techniques, providing tailored solutions and driving customer interactions.
Permanent WFH - Work From Home. Good Work Life Balance. Good pay.
What qualifications/skills are we looking for?
- Bachelorโs Degree in Engineering or MCA - 2023 Graduates ONLY
- 0-1 years of experience in Linux/Windows Systems administration OR Database design and Optimization OR BigData Analysis OR Network administration OR Dev-ops. (no relevant experience also works but would be a plus)
Job link - https://amazon.jobs/en/jobs/2469306/cloud-support-associate
P.S. - You would be tested on your Computer Networking & Operating Systems concept (the college subjects, yes). So, if you are proficient with the same. It would be a cake walk to clear the interviews.
class DNSCache:
def init(self, cache_size, cache_time):
self.cache_size = cache_size
self.cache_time = cache_time
self.cache = {}
def get_from_cache(self, url):
if url in self.cache:
return self.cache_time
return -1
def add_to_cache(self, url):
if len(self.cache) == self.cache_size:
oldest = min(self.cache, key=self.cache.get)
del self.cache[oldest]
self.cache[url] = 1
def calculate_min_time(urls, dns_cache, server_time):
result_times = []
for url in urls:
cache_time = dns_cache.get_from_cache(url)
if cache_time != -1:
result_times.append(cache_time)
else:
result_times.append(server_time)
dns_cache.add_to_cache(url)
return result_times
IBM โ
def init(self, cache_size, cache_time):
self.cache_size = cache_size
self.cache_time = cache_time
self.cache = {}
def get_from_cache(self, url):
if url in self.cache:
return self.cache_time
return -1
def add_to_cache(self, url):
if len(self.cache) == self.cache_size:
oldest = min(self.cache, key=self.cache.get)
del self.cache[oldest]
self.cache[url] = 1
def calculate_min_time(urls, dns_cache, server_time):
result_times = []
for url in urls:
cache_time = dns_cache.get_from_cache(url)
if cache_time != -1:
result_times.append(cache_time)
else:
result_times.append(server_time)
dns_cache.add_to_cache(url)
return result_times
IBM โ