Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Menlo is hiring Computer Science Interns
For 2023, 2024 Grads
https://www.linkedin.com/posts/onkar-sawarna-569615187_menlo-is-looking-for-hiring-interns-for-the-activity-7214586445003390976-BRWG?utm_source=share&utm_medium=member_android
For 2023, 2024 Grads
https://www.linkedin.com/posts/onkar-sawarna-569615187_menlo-is-looking-for-hiring-interns-for-the-activity-7214586445003390976-BRWG?utm_source=share&utm_medium=member_android
Linkedin
Sign Up | LinkedIn
500 million+ members | Manage your professional identity. Build and engage with your professional network. Access knowledge, insights and opportunities.
๐1
urgent hiring for 7+ posts like Web developers both front end and backend, logo designers, and many more
Batch :2022/2023
https://forms.gle/YEfnw3avT3fDUUvCA
Batch :2022/2023
https://forms.gle/YEfnw3avT3fDUUvCA
One advice to all the freshers out there!! For a single job openings 1000s of candidates are applying and getting your resume shortlisted for further process are quite tough.
Instead, check with your friends and collegemate, when they get placed they will received an offer letter from HR, ask them to share the HR mail id and try to reach out directly.
In this way chances of getting replied back will be more.
Instead, check with your friends and collegemate, when they get placed they will received an offer letter from HR, ask them to share the HR mail id and try to reach out directly.
In this way chances of getting replied back will be more.
๐6
#include <bits/stdc++.h>
using namespace std;
int main() {
int mod = 1000000007;
string s;
cin>>s;
long long n = s.size();
long long i=0;
long long ans = 1;
for(i=0;i<n;i++){
long long c = 1;
while(i<n-1 && s[i]==s[i+1]){
c++;
i++;
}
ans = (ans*c)%mod;
}
cout<<ans%mod;
return 0;
}
Alex Keyboard โ
using namespace std;
int main() {
int mod = 1000000007;
string s;
cin>>s;
long long n = s.size();
long long i=0;
long long ans = 1;
for(i=0;i<n;i++){
long long c = 1;
while(i<n-1 && s[i]==s[i+1]){
c++;
i++;
}
ans = (ans*c)%mod;
}
cout<<ans%mod;
return 0;
}
Alex Keyboard โ
return sum(1 for i in input1 if i<0)
Financial Dataset โ
Financial Dataset โ
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main() {
int N;
cin >> N;
vector<int> candies(N);
for (int i = 0; i < N; ++i) {
cin >> candies[i];
}
int min_value = candies[0];
int max_tastiness_index = -1;
for (int i = 1; i < N; ++i) {
int current_difference = candies[i] - min_value;
if (current_difference > max_tastiness_index) {
max_tastiness_index = current_difference;
}
if (candies[i] < min_value) {
min_value = candies[i];
}
}
cout << max_tastiness_index << endl;
return 0;
}
Tastiness index โ
#include <vector>
#include <algorithm>
using namespace std;
int main() {
int N;
cin >> N;
vector<int> candies(N);
for (int i = 0; i < N; ++i) {
cin >> candies[i];
}
int min_value = candies[0];
int max_tastiness_index = -1;
for (int i = 1; i < N; ++i) {
int current_difference = candies[i] - min_value;
if (current_difference > max_tastiness_index) {
max_tastiness_index = current_difference;
}
if (candies[i] < min_value) {
min_value = candies[i];
}
}
cout << max_tastiness_index << endl;
return 0;
}
Tastiness index โ
๐2
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Tech Mahindra - Ahmedabad, Fresher Hiring - Manual Testing - July 2024
openings for Manual Testing requirement and are looking for fresher graduates 2023 or 24 pass outs, who can join us at our Ahmedabad office on immediate basis.
Deadline : Before 4 PM, 8th July
https://docs.google.com/forms/d/e/1FAIpQLSfSOlLbgyoYo877t3JtuX8CzTeEM3Fv9WybG86Xb6WVn8qWGQ/viewform
openings for Manual Testing requirement and are looking for fresher graduates 2023 or 24 pass outs, who can join us at our Ahmedabad office on immediate basis.
Deadline : Before 4 PM, 8th July
https://docs.google.com/forms/d/e/1FAIpQLSfSOlLbgyoYo877t3JtuX8CzTeEM3Fv9WybG86Xb6WVn8qWGQ/viewform
Who have Google exams guys??
Send questions here solutions will be provide What the time of exam
Send questions here solutions will be provide What the time of exam
๐คฎ4
#include<bits/stdc++.h>
using namespace std;
int maxi = 0;
int F(int col , vector<vector<int>> &a , vector<int> &dp){
if(col == a[0].size()){
return maxi = max(maxi , (int) dp.size());
}
for(int row = 0 ; row < a.size() ; row++){
if(dp.size() == 0 || dp.back() < a[row][col]){
dp.push_back(a[row][col]);
F(col + 1 , a , dp);
dp.pop_back();
}
else{
int id = lower_bound(dp.begin() , dp.end() , a[row][col]) - dp.begin();
int old = dp[id];
dp[id] = a[row][col];
F(col + 1 , a , dp);
dp[id] = old;
}
}
}
int longestSequence(vector<vector<int>> &matrix){
maxi = 0;
vector<int> dp;
F(0 , matrix , dp);
return maxi;
}
DE Shaw โ
using namespace std;
int maxi = 0;
int F(int col , vector<vector<int>> &a , vector<int> &dp){
if(col == a[0].size()){
return maxi = max(maxi , (int) dp.size());
}
for(int row = 0 ; row < a.size() ; row++){
if(dp.size() == 0 || dp.back() < a[row][col]){
dp.push_back(a[row][col]);
F(col + 1 , a , dp);
dp.pop_back();
}
else{
int id = lower_bound(dp.begin() , dp.end() , a[row][col]) - dp.begin();
int old = dp[id];
dp[id] = a[row][col];
F(col + 1 , a , dp);
dp[id] = old;
}
}
}
int longestSequence(vector<vector<int>> &matrix){
maxi = 0;
vector<int> dp;
F(0 , matrix , dp);
return maxi;
}
DE Shaw โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐ElasticDevs is hiring for Software Engineer (Walkin on July 06, 2024)
Apply here:
https://linkedin.com/jobs/view/3963981202/
Apply here:
https://linkedin.com/jobs/view/3963981202/
Linkedin
ElasticDevs hiring Software Engineer (Walkin on July 06, 2024) in Bengaluru, Karnataka, India | LinkedIn
Posted 5:00:17 PM. Job Title : Software Engineer [ Walkin ]Walk-in Date: July 06, 2024Reporting Time: 12:00 PM toโฆSee this and similar jobs on LinkedIn.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
My friend Ashwin Kulkarniโs (Senior Software Engineer at IBM Cloud) is taking a FREE group session on Career in Cloud this weekend!
โก๏ธ Available career options and growth strategies.
โก๏ธ Expert roadmap for ideal preparation.
โก๏ธ AMA with Ashwin directly!
Date: July 7 (12: 30 PM)
Register your spot - https://explore.preplaced.in/B47EP7
โก๏ธ Available career options and growth strategies.
โก๏ธ Expert roadmap for ideal preparation.
โก๏ธ AMA with Ashwin directly!
Date: July 7 (12: 30 PM)
Register your spot - https://explore.preplaced.in/B47EP7
www.preplaced.in
Cloud Careers: Growth and Opportunities in 2024 | Preplaced
Group Session by Ashwin Kulkarni | Staff Software Engineer @IBM | Backend Developer Mentor @Preplaced | GoLang , CI/CD Specialist
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Groww
๐ Job Title: SDE Intern (Frontend)
โ๐ป YOE: 2024, 2025 and 2026 grads
โก๏ธ Apply: https://docs.google.com/forms/d/e/1FAIpQLScoBAT-JXiyzJ-ey9Jikaw86W5DwwNCeMfkpa70duRUPK5C7A/viewform?pli=1
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐ Job Title: SDE Intern (Frontend)
โ๐ป YOE: 2024, 2025 and 2026 grads
โก๏ธ Apply: https://docs.google.com/forms/d/e/1FAIpQLScoBAT-JXiyzJ-ey9Jikaw86W5DwwNCeMfkpa70duRUPK5C7A/viewform?pli=1
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Tech Mahindra - Ahmedabad, Fresher Hiring - Manual Testing - July 2024
openings for Manual Testing requirement and are looking for fresher graduates 2023 or 24 pass outs, who can join us at our Ahmedabad office on immediate basis.
Deadline : Before 4 PM, 8th July
https://docs.google.com/forms/d/e/1FAIpQLSfSOlLbgyoYo877t3JtuX8CzTeEM3Fv9WybG86Xb6WVn8qWGQ/viewform
openings for Manual Testing requirement and are looking for fresher graduates 2023 or 24 pass outs, who can join us at our Ahmedabad office on immediate basis.
Deadline : Before 4 PM, 8th July
https://docs.google.com/forms/d/e/1FAIpQLSfSOlLbgyoYo877t3JtuX8CzTeEM3Fv9WybG86Xb6WVn8qWGQ/viewform
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Goldman Sachs is hiring Non-Engineering Grads
For - 2026 Grads
Location - Bangalore, Hyderabad
https://www.linkedin.com/posts/kazim11_graduate-campus-hiring-program-2024-25-activity-7214606465146257408-q1R6?utm_source=share&utm_medium=member_android
For - 2026 Grads
Location - Bangalore, Hyderabad
https://www.linkedin.com/posts/kazim11_graduate-campus-hiring-program-2024-25-activity-7214606465146257408-q1R6?utm_source=share&utm_medium=member_android
Linkedin
Sign Up | LinkedIn
500 million+ members | Manage your professional identity. Build and engage with your professional network. Access knowledge, insights and opportunities.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Software Development At Nference Labs
Batch: 2023, 2024, 2025
Stipend : 30k / Month
https://internshala.com/internship/detail/software-development-internship-in-bangalore-at-nference-labs1719289872/
Batch: 2023, 2024, 2025
Stipend : 30k / Month
https://internshala.com/internship/detail/software-development-internship-in-bangalore-at-nference-labs1719289872/
Internshala
Software Development Internship at Nference Labs, Bangalore
Selected intern's day-to-day responsibilities include:
1. Develop and maintain web applications using Python and Django
2. Collaborate with the front-end team to integrate workflows into user-facing applications
3. Work with databases and serversโฆ
1. Develop and maintain web applications using Python and Django
2. Collaborate with the front-end team to integrate workflows into user-facing applications
3. Work with databases and serversโฆ
#include <iostream>
#include <unordered_set>
#include <string>
using namespace std;
void generateSubstrings(const string &s, int len, unordered_set<string> &substrings) {
for (int i = 0; i <= s.size() - len; ++i) {
substrings.insert(s.substr(i, len));
}
}
string findMinimalString(const string &s) {
unordered_set<string> substrings;
for (int len = 1; ; ++len) {
substrings.clear();
generateSubstrings(s, len, substrings);
string candidate(len, 'a');
while (true) {
if (substrings.find(candidate) == substrings.end()) {
return candidate;
}
int pos = len - 1;
while (pos >= 0 && candidate[pos] == 'z') {
candidate[pos] = 'a';
--pos;
}
if (pos < 0) break;
++candidate[pos];
}
}
}
int main() {
string S;
cin >> S;
cout << findMinimalString(S) << endl;
return 0;
}.
// Minimal String
Infosys โ
#include <unordered_set>
#include <string>
using namespace std;
void generateSubstrings(const string &s, int len, unordered_set<string> &substrings) {
for (int i = 0; i <= s.size() - len; ++i) {
substrings.insert(s.substr(i, len));
}
}
string findMinimalString(const string &s) {
unordered_set<string> substrings;
for (int len = 1; ; ++len) {
substrings.clear();
generateSubstrings(s, len, substrings);
string candidate(len, 'a');
while (true) {
if (substrings.find(candidate) == substrings.end()) {
return candidate;
}
int pos = len - 1;
while (pos >= 0 && candidate[pos] == 'z') {
candidate[pos] = 'a';
--pos;
}
if (pos < 0) break;
++candidate[pos];
}
}
}
int main() {
string S;
cin >> S;
cout << findMinimalString(S) << endl;
return 0;
}.
// Minimal String
Infosys โ
๐1
#include <iostream>
#include <vector>
using namespace std;
vector<bool> sieve(int max_val) {
vector<bool> is_prime(max_val + 1, true);
is_prime[0] = is_prime[1] = false;
for (int i = 2; i * i <= max_val; ++i) {
if (is_prime[i]) {
for (int j = i * i; j <= max_val; j += i) {
is_prime[j] = false;
}
}
}
return is_prime;
}
int main() {
int N;
cin >> N;
vector<int> A(N);
int max_val = 0;
for (int i = 0; i < N; ++i) {
cin >> A[i];
if (A[i] > max_val) {
max_val = A[i];
}
}
vector<bool> is_prime = sieve(max_val);
int prime_count = 0, composite_count = 0;
for (int i = 0; i < N; ++i) {
if (is_prime[A[i]]) {
prime_count++;
} else {
composite_count++;
}
}
int good_pairs = prime_count * composite_count;
cout << good_pairs << endl;
return 0;
}.
find good pairs in array
Infosys โ
#include <vector>
using namespace std;
vector<bool> sieve(int max_val) {
vector<bool> is_prime(max_val + 1, true);
is_prime[0] = is_prime[1] = false;
for (int i = 2; i * i <= max_val; ++i) {
if (is_prime[i]) {
for (int j = i * i; j <= max_val; j += i) {
is_prime[j] = false;
}
}
}
return is_prime;
}
int main() {
int N;
cin >> N;
vector<int> A(N);
int max_val = 0;
for (int i = 0; i < N; ++i) {
cin >> A[i];
if (A[i] > max_val) {
max_val = A[i];
}
}
vector<bool> is_prime = sieve(max_val);
int prime_count = 0, composite_count = 0;
for (int i = 0; i < N; ++i) {
if (is_prime[A[i]]) {
prime_count++;
} else {
composite_count++;
}
}
int good_pairs = prime_count * composite_count;
cout << good_pairs << endl;
return 0;
}.
find good pairs in array
Infosys โ