Diversity Challenge Code โ
Large Dam
Large Dam
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
ReNew
We are looking to hire Graduate Engineer Trainees (GETs) who are fresh engineering graduates of the batch of 2024. These GETs will be a part of our manufacturing plant based in Dholera, Gujarat.
Interested candidates can click on the link to apply: https://forms.microsoft.com/pages/responsepage.aspx?id=gYP1nQXYxUCc6blOxwqHDYIGFOUgRR5Nrc7tUENCB31URFdQTDBWVEoxQkNVSjA4REFOTjVRMk9USy4u
Profile & Eligibility Criteria:
ยท Fresh graduates (Graduation year - 2024).
ยท Specialization: B.Tech. Electrical/Electronics
ยท Good analytical and communication skills.
ยท Working knowledge of MS-Office suite (Excel, Word, and PowerPoint).
ยท Energized and highly motivated individuals with a passion to work in the clean energy space.
ยท Demonstrate ReNew values of Pioneering, Responsibility, Excellence, and Responsibility.
ยท Go-getter attitude with an ability to work in a fast-paced environment.
ยท Ability to work under pressure and manage ambiguity.
We are looking to hire Graduate Engineer Trainees (GETs) who are fresh engineering graduates of the batch of 2024. These GETs will be a part of our manufacturing plant based in Dholera, Gujarat.
Interested candidates can click on the link to apply: https://forms.microsoft.com/pages/responsepage.aspx?id=gYP1nQXYxUCc6blOxwqHDYIGFOUgRR5Nrc7tUENCB31URFdQTDBWVEoxQkNVSjA4REFOTjVRMk9USy4u
Profile & Eligibility Criteria:
ยท Fresh graduates (Graduation year - 2024).
ยท Specialization: B.Tech. Electrical/Electronics
ยท Good analytical and communication skills.
ยท Working knowledge of MS-Office suite (Excel, Word, and PowerPoint).
ยท Energized and highly motivated individuals with a passion to work in the clean energy space.
ยท Demonstrate ReNew values of Pioneering, Responsibility, Excellence, and Responsibility.
ยท Go-getter attitude with an ability to work in a fast-paced environment.
ยท Ability to work under pressure and manage ambiguity.
Microsoft
Please fill out this form
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company โ Pearson
Role โ Data Engineer - Intern
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3884561204
Company โ GoodPegg
Role โ Business Analyst
Exp. โ Fresher
Apply Here โ https://www.simplyhired.co.in/job/M47BIw7kiSfChTe_HBW8sW7MwBKz6LJOMM4DloWpQB45Di0YcGzMyg
Company โ Datadive AI Private Limited
Role โ Machine Learning Engineer
Exp. โ 0-1 yr
Apply Here โ https://www.linkedin.com/jobs/view/3884059620
Company โ VeARC Technologies Private Limited
Role โ Data Engineer
Exp. โ 0-2 yrs
Apply Here โ https://www.linkedin.com/jobs/view/3888483702
Role โ Data Engineer - Intern
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3884561204
Company โ GoodPegg
Role โ Business Analyst
Exp. โ Fresher
Apply Here โ https://www.simplyhired.co.in/job/M47BIw7kiSfChTe_HBW8sW7MwBKz6LJOMM4DloWpQB45Di0YcGzMyg
Company โ Datadive AI Private Limited
Role โ Machine Learning Engineer
Exp. โ 0-1 yr
Apply Here โ https://www.linkedin.com/jobs/view/3884059620
Company โ VeARC Technologies Private Limited
Role โ Data Engineer
Exp. โ 0-2 yrs
Apply Here โ https://www.linkedin.com/jobs/view/3888483702
Linkedin
29,000+ Data Engineer jobs in India (2,343 new)
Todayโs top 29,000+ Data Engineer jobs in India. Leverage your professional network, and get hired. New Data Engineer jobs added daily.
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
ll solve(vector<ll>&a,ll k) { ll n=a.size(); vector<ll>dp(n); for(ll i=n-1;i>=0;i--) { if(i+k<n) dp[i]=a[i]+dp[i+k]; else dp[i]=a[i]; } ll ans=INT_MIN; // for(auto it:dp) cout<<it<<" "; for(auto it:dp) ans=max(ansโฆ
Maximum Information โ
#include <iostream>
#include <vector>
#include <unordered_map>
#include <algorithm>
using namespace std;
vector<vector<string>> solve(vector<string>& strs) {
unordered_map<string, vector<string>> mp;
for (string s : strs) {
string t = s;
sort(t.begin(), t.end());
mp[t].push_back(s);
}
vector<vector<string>> anagrams;
for (auto p : mp) {
anagrams.push_back(p.second);
}
return anagrams;
}
int main() {
int n;
cin >> n;
vector<string> strs(n);
for (int i = 0; i < n; i++) {
cin >> strs[i];
}
vector<vector<string>> ans = solve(strs);
int maxi= 0;
for (auto g : ans) {
maxi = max(maxi, (int)g.size());
}
for (auto g : ans) {
if (g.size() == maxi) {
for (string s : g) {
cout << s << " ";
}
cout << endl;
}
}
return 0;
}
Anagram
Salesforce โ
#include <vector>
#include <unordered_map>
#include <algorithm>
using namespace std;
vector<vector<string>> solve(vector<string>& strs) {
unordered_map<string, vector<string>> mp;
for (string s : strs) {
string t = s;
sort(t.begin(), t.end());
mp[t].push_back(s);
}
vector<vector<string>> anagrams;
for (auto p : mp) {
anagrams.push_back(p.second);
}
return anagrams;
}
int main() {
int n;
cin >> n;
vector<string> strs(n);
for (int i = 0; i < n; i++) {
cin >> strs[i];
}
vector<vector<string>> ans = solve(strs);
int maxi= 0;
for (auto g : ans) {
maxi = max(maxi, (int)g.size());
}
for (auto g : ans) {
if (g.size() == maxi) {
for (string s : g) {
cout << s << " ";
}
cout << endl;
}
}
return 0;
}
Anagram
Salesforce โ
๐3๐2
int calc(long long n) {
long long t = sqrt(n * 2);
while(t * (t + 1) / 2 > n) t--;
while((t + 1) * (t + 2) / 2 <= n) t++;
return t;
};
void getMaxHeight() {
long long n, m; cin >> n >> m;
int turn = 0;
int ans = 0;
int res = 0;
res = max(calc(n), calc(m));
for(int i = 1; i <= 1000000000; i++) {
if(!turn) {
if(n < i) {
break;
} else {
n -= i;
ans++;
res = max(res, ans + calc(m));
}
} else {
if(m < i) {
break;
} else {
m -= i;
ans++;
res = max(res, ans + calc(n));
}
}
turn ^= 1;
}
cout << max(ans, res);
}
Trailhead โ
Salesforce
long long t = sqrt(n * 2);
while(t * (t + 1) / 2 > n) t--;
while((t + 1) * (t + 2) / 2 <= n) t++;
return t;
};
void getMaxHeight() {
long long n, m; cin >> n >> m;
int turn = 0;
int ans = 0;
int res = 0;
res = max(calc(n), calc(m));
for(int i = 1; i <= 1000000000; i++) {
if(!turn) {
if(n < i) {
break;
} else {
n -= i;
ans++;
res = max(res, ans + calc(m));
}
} else {
if(m < i) {
break;
} else {
m -= i;
ans++;
res = max(res, ans + calc(n));
}
}
turn ^= 1;
}
cout << max(ans, res);
}
Trailhead โ
Salesforce
๐1
const int N = 2000 + 10;
int cnt[N][N], dp[N][N];
float highest_density(vector<vector<int>> points) {
vector<int> c;
for(auto x : points) {
c.push_back(x[0]);
c.push_back(x[1]);
}
sort(c.begin(), c.end());
c.resize(unique(c.begin(), c.end()) - c.begin());
for(auto &p : points) {
for(auto &x : p) {
x = lower_bound(c.begin(), c.end(), x) - c.begin() + 1;
}
cnt[p[0]][p[1]]++;
}
for(int i = 1; i <= 2000; i++) {
for(int j = 1; j <= 2000; j++) {
dp[i][j] = cnt[i][j] + dp[i - 1][j] + dp[i][j - 1] - dp[i - 1][j - 1];
}
}
float ans = -1.0;
for(int i = 0; i < points.size(); i++) {
for(int j = i + 1; j < points.size(); j++) {
int x = points[i][0], y = points[i][1];
int u = points[j][0], v = points[j][1];
if(x > u) swap(x, u);
if(y > v) swap(y, v);
if(x == u || y == v) continue;
if(!cnt[x][y]!cnt[u][v] !cnt[x][v] || !cnt[u][y]) continue;
float S = (c[u - 1] - c[x - 1]);
float T = (c[v - 1] - c[y - 1]);
x++; u--; y++; v--;
ans = max(ans, (float)0);
if(x > u || y > v) continue;
float pp = dp[u][v] - dp[x - 1][v] - dp[u][y - 1] + dp[x - 1][y - 1];
pp = pp / S;
pp = pp / T;
ans = max(ans, pp);
}
}
return ans;
}
Rectangle
Salesforce โ
int cnt[N][N], dp[N][N];
float highest_density(vector<vector<int>> points) {
vector<int> c;
for(auto x : points) {
c.push_back(x[0]);
c.push_back(x[1]);
}
sort(c.begin(), c.end());
c.resize(unique(c.begin(), c.end()) - c.begin());
for(auto &p : points) {
for(auto &x : p) {
x = lower_bound(c.begin(), c.end(), x) - c.begin() + 1;
}
cnt[p[0]][p[1]]++;
}
for(int i = 1; i <= 2000; i++) {
for(int j = 1; j <= 2000; j++) {
dp[i][j] = cnt[i][j] + dp[i - 1][j] + dp[i][j - 1] - dp[i - 1][j - 1];
}
}
float ans = -1.0;
for(int i = 0; i < points.size(); i++) {
for(int j = i + 1; j < points.size(); j++) {
int x = points[i][0], y = points[i][1];
int u = points[j][0], v = points[j][1];
if(x > u) swap(x, u);
if(y > v) swap(y, v);
if(x == u || y == v) continue;
if(!cnt[x][y]
float S = (c[u - 1] - c[x - 1]);
float T = (c[v - 1] - c[y - 1]);
x++; u--; y++; v--;
ans = max(ans, (float)0);
if(x > u || y > v) continue;
float pp = dp[u][v] - dp[x - 1][v] - dp[u][y - 1] + dp[x - 1][y - 1];
pp = pp / S;
pp = pp / T;
ans = max(ans, pp);
}
}
return ans;
}
Rectangle
Salesforce โ
๐2
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Software Development Engineer Intern at BosonQ Psi (BQP)
2025 Batch
6 Month Intern and chance of PPO
https://www.linkedin.com/jobs/view/3888328596
2025 Batch
6 Month Intern and chance of PPO
https://www.linkedin.com/jobs/view/3888328596
Do you enjoy reading this channel?
Perhaps you have thought about placing ads on it?
To do this, follow three simple steps:
1) Sign up: https://telega.io/c/cs_algo
2) Top up the balance in a convenient way
3) Create an advertising post
If the topic of your post fits our channel, we will publish it with pleasure.
Perhaps you have thought about placing ads on it?
To do this, follow three simple steps:
1) Sign up: https://telega.io/c/cs_algo
2) Top up the balance in a convenient way
3) Create an advertising post
If the topic of your post fits our channel, we will publish it with pleasure.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Python Developer @Intern(2024 Batch)
https://app.pyjamahr.com/careers?company=Ovidtech%20Technologies&job_id=91117&company_uuid=BB205FF2F3
https://app.pyjamahr.com/careers?company=Ovidtech%20Technologies&job_id=91117&company_uuid=BB205FF2F3
Pyjamahr
Apply For Python Developer @Intern(2024 Batch)
<div><strong style="color: var(--N800);">Role & responsibilities</strong></div><div>We are currently seeking a talented and experienced Python Developer with a strong background in algorithmic trading to join our growing team.</div><div><strong style="color:โฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
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)
Company Name : Tower Research Capital
Role : ML Internship
Batch : 2024/2025 passouts
Link : https://www.tower-research.com/open-positions
Role : ML Internship
Batch : 2024/2025 passouts
Link : https://www.tower-research.com/open-positions
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name : Flipkart
Role : Application Engineer
Batch : 2023 passout females in CSE/IT
CTC : 11.5 LPA
Link : https://docs.google.com/forms/d/e/1FAIpQLSf43yQaD0n7KwlLV0OINyNeeSxVKQUEilPpW6AuPOCbKyMM3w/viewform
Role : Application Engineer
Batch : 2023 passout females in CSE/IT
CTC : 11.5 LPA
Link : https://docs.google.com/forms/d/e/1FAIpQLSf43yQaD0n7KwlLV0OINyNeeSxVKQUEilPpW6AuPOCbKyMM3w/viewform
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name : INDMoney
Role : SDE Internship and SDE(2 years experience.)
Batch : 2025/2024 for internship + 2021/2022 for FTE
Link : https://docs.google.com/forms/d/e/1FAIpQLScFJq1Va1-2ZqxQn1ZAUlg33osP81xVOaMsStf_mgbumdjaTA/viewform
Role : SDE Internship and SDE(2 years experience.)
Batch : 2025/2024 for internship + 2021/2022 for FTE
Link : https://docs.google.com/forms/d/e/1FAIpQLScFJq1Va1-2ZqxQn1ZAUlg33osP81xVOaMsStf_mgbumdjaTA/viewform
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
โ๏ธKaar-Infotech Off Campus Drive 2024 for Fresher | B.E/B.Tech/M.E/M.Tech | INR 3-5 LPAโ๏ธ
๐จโ๐ป Job Role : Fresher
๐Qualification : B.E/B.Tech/M.E/M.Tech
๐Batch : 2023 & 2024
๐ฐSalary : 3-5 LPA
โญ๏ธ Apply Fast :
https://www.naukri.com/job-listings-kaar-infotech-fresher-s-recruitment-drive-2024-hurry-up-and-apply-kaar-infotech-hyderabad-coimbatore-erode-0-to-1-years-090424009556
๐จโ๐ป Job Role : Fresher
๐Qualification : B.E/B.Tech/M.E/M.Tech
๐Batch : 2023 & 2024
๐ฐSalary : 3-5 LPA
โญ๏ธ Apply Fast :
https://www.naukri.com/job-listings-kaar-infotech-fresher-s-recruitment-drive-2024-hurry-up-and-apply-kaar-infotech-hyderabad-coimbatore-erode-0-to-1-years-090424009556
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
โ๏ธSnapper-IT Off Campus Drive 2024 for Application Developer | B.E/B.Tech | INR 4-6 LPAโ๏ธ
๐จโ๐ปJob Role : Application Developer
๐Qualification : B.E/B.Tech
๐Experience : Fresher
๐ฐPackage : 4-6 LPA
https://www.snapperit.com/jobs/application-developer-fresher-hyderabad/
๐จโ๐ปJob Role : Application Developer
๐Qualification : B.E/B.Tech
๐Experience : Fresher
๐ฐPackage : 4-6 LPA
https://www.snapperit.com/jobs/application-developer-fresher-hyderabad/
Snapper IT
Application Developer Fresher - Snapper IT