Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Check out this job at Axis Bank: https://www.linkedin.com/jobs/view/4049028200
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Shanti B. on LinkedIn: #vlsi #hcltech #hiring #pdtrainedfreshers #jobseekers #vlsigroupsโฆ | 24 comments
Hello #VLSI Family!!
We at #HCLtech #hiring #PDtrainedfreshers minimum 6 months training experience.
Location: Bangalore, Noida
Exp: 0-3 Years
If you areโฆ | 24 comments on LinkedIn
We at #HCLtech #hiring #PDtrainedfreshers minimum 6 months training experience.
Location: Bangalore, Noida
Exp: 0-3 Years
If you areโฆ | 24 comments on LinkedIn
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Mudit Rastogi on LinkedIn: #hiringnow #ai #generativeai #gan #llm #aiinternship #remoteworkโฆ | 83 comments
Weโre Hiring AI Interns โ Start Immediately!
Are you passionate about Generative AI and eager to dive into cutting-edge projects? We're looking forโฆ | 83 comments on LinkedIn
Are you passionate about Generative AI and eager to dive into cutting-edge projects? We're looking forโฆ | 83 comments on LinkedIn
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Meesho
Role: Android Developer
YOE: 2 months - 2 years in android development
If interested send your resume to: sheifali.singh@meesho.com
Role: Android Developer
YOE: 2 months - 2 years in android development
If interested send your resume to: sheifali.singh@meesho.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Cornerstone
Role: Associate Software Engineer
YOE: 2023 and 2024 grads
Apply: https://cornerstone.csod.com/ux/ats/careersite/2/home/requisition/9717?c=cornerstone
Role: Associate Software Engineer
YOE: 2023 and 2024 grads
Apply: https://cornerstone.csod.com/ux/ats/careersite/2/home/requisition/9717?c=cornerstone
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Lightcast is hiring Software Engineer
For 2021, 2022, 2023 grads
Location: Chennai
https://jobs.lever.co/economicmodeling/4016e3d8-8a90-42de-ab79-94ef16be0b1d/
For 2021, 2022, 2023 grads
Location: Chennai
https://jobs.lever.co/economicmodeling/4016e3d8-8a90-42de-ab79-94ef16be0b1d/
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name : Nestle
Nestinternship 2024
Batch : All college going students - core branches
Link : https://www.nestle.in/jobs/students-graduates/nesternship-internship-program
Nestinternship 2024
Batch : All college going students - core branches
Link : https://www.nestle.in/jobs/students-graduates/nesternship-internship-program
Nestlรฉ India
Nestlรฉ Internship Program
Jumpstart your career with Nestlรฉ's internship program. Gain hands-on experience and build skills with a global leader. Apply now for a Nesternship !
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
int mod = 1e9 + 7;
int countWaysToCreateWave(vector<int> nums,int m){
int n = nums.size();
vector<ll> PrefixDP1(m+1,0) , PrefixDP2(m+1,0);
for(int i = n - 1 ; i >= 0 ; i--){
vector<ll> newDP1(m+1,0) , newDP2(m+1,0);
if(nums[i] == -1){
for(int ending = 1 ; ending <= m ; ending++){
(newDP1[ending] += i == n-1 ? ending != m : PrefixDP2[m] - PrefixDP2[ending] + mod) %= mod;
(newDP2[ending] += i == n-1 ? ending != 1 : PrefixDP1[ending-1] - PrefixDP1[0] + mod) %= mod;
}
}
else{
(newDP1[nums[i]] = i == n-1 ? nums[i] != m : PrefixDP2[m] - PrefixDP2[nums[i]] + mod) %= mod;
(newDP2[nums[i]] = i == n-1 ? nums[i] != 1 : PrefixDP1[nums[i]-1] - PrefixDP1[0] + mod) %= mod;
}
for(int ending = 1 ; ending <= m ; ending++){
PrefixDP1[ending] = (PrefixDP1[ending-1] + newDP1[ending]) % mod;
PrefixDP2[ending] = (PrefixDP2[ending-1] + newDP2[ending]) % mod;
}
}
return (PrefixDP1[m] + PrefixDP2[m]) % mod;
}
Movelnsync Application latency wave โ
using namespace std;
using ll = long long;
int mod = 1e9 + 7;
int countWaysToCreateWave(vector<int> nums,int m){
int n = nums.size();
vector<ll> PrefixDP1(m+1,0) , PrefixDP2(m+1,0);
for(int i = n - 1 ; i >= 0 ; i--){
vector<ll> newDP1(m+1,0) , newDP2(m+1,0);
if(nums[i] == -1){
for(int ending = 1 ; ending <= m ; ending++){
(newDP1[ending] += i == n-1 ? ending != m : PrefixDP2[m] - PrefixDP2[ending] + mod) %= mod;
(newDP2[ending] += i == n-1 ? ending != 1 : PrefixDP1[ending-1] - PrefixDP1[0] + mod) %= mod;
}
}
else{
(newDP1[nums[i]] = i == n-1 ? nums[i] != m : PrefixDP2[m] - PrefixDP2[nums[i]] + mod) %= mod;
(newDP2[nums[i]] = i == n-1 ? nums[i] != 1 : PrefixDP1[nums[i]-1] - PrefixDP1[0] + mod) %= mod;
}
for(int ending = 1 ; ending <= m ; ending++){
PrefixDP1[ending] = (PrefixDP1[ending-1] + newDP1[ending]) % mod;
PrefixDP2[ending] = (PrefixDP2[ending-1] + newDP2[ending]) % mod;
}
}
return (PrefixDP1[m] + PrefixDP2[m]) % mod;
}
Movelnsync Application latency wave โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
import requests
def findCountry(region, keyword):
base_url = f"https://jsonmock.hackerrank.com/api/countries/search?region={region}&name={keyword}&page="
page = 1
results = []
while True:
response = requests.get(base_url + str(page))
data = response.json()
if not data['data']:
break
for country in data['data']:
if keyword.lower() in country['name'].lower():
results.append((country['name'], country['population']))
if page >= data['total_pages']:
break
page += 1
results.sort(key=lambda x: (x[1], x[0]))
for name, population in results:
print(f"{name},{population}")
Countries by region โ
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Litera is hiring for Software Engineer, React
Experience: 0 - 1 year's
Expected Salary: 7-14 LPA
Apply here: https://litera.wd12.myworkdayjobs.com/Litera_Careers/job/India-Ahmedabad-Office/Software-Engineer--React_R-500271?source=LinkedIn
๐Red Hat is hiring for Associate Software Engineer
Experience: 0 - 1 year's
Expected Salary: 8-16 LPA
Apply here: https://redhat.wd5.myworkdayjobs.com/jobs/job/Bangalore---Carina/Associate-Software-Engineer---Red-Hat-Ansible_R-042350-1?%2526iisn=LinkedIn%252BPosting&source=LinkedIn&%2526%253Fmode=job&%2526iis=Job%252BBoard
๐Decisions is hiring for Junior QA Automation Engineer
Experience: 0 - 1 year's
Expected Salary: 3-6 LPA
Apply here: https://decisions.com/jobs-listing/?gh_jid=4541703007&gh_src=8f2d3fd87us
Experience: 0 - 1 year's
Expected Salary: 7-14 LPA
Apply here: https://litera.wd12.myworkdayjobs.com/Litera_Careers/job/India-Ahmedabad-Office/Software-Engineer--React_R-500271?source=LinkedIn
๐Red Hat is hiring for Associate Software Engineer
Experience: 0 - 1 year's
Expected Salary: 8-16 LPA
Apply here: https://redhat.wd5.myworkdayjobs.com/jobs/job/Bangalore---Carina/Associate-Software-Engineer---Red-Hat-Ansible_R-042350-1?%2526iisn=LinkedIn%252BPosting&source=LinkedIn&%2526%253Fmode=job&%2526iis=Job%252BBoard
๐Decisions is hiring for Junior QA Automation Engineer
Experience: 0 - 1 year's
Expected Salary: 3-6 LPA
Apply here: https://decisions.com/jobs-listing/?gh_jid=4541703007&gh_src=8f2d3fd87us
Myworkdayjobs
Software Engineer, React
Job Description Join Our Team at Litera: Where Legal Technology Meets Excellence Litera has been at the forefront of legal technology innovation for over 25 years, crafting legal software to amplify impact and maximize efficiency. Developed by the best legalโฆ
Things Introverts Hate Most:
- phone calls
- meaningless conversations
- unplanned visits
- noisy neighbours
- crowded places
- guests who stay after 8.30 pm
- last minute change of plans
- lack of common sense
Agreed?
- phone calls
- meaningless conversations
- unplanned visits
- noisy neighbours
- crowded places
- guests who stay after 8.30 pm
- last minute change of plans
- lack of common sense
Agreed?
๐9
#include <iostream>
#include <vector>
#include <unordered_map>
#include <algorithm>
using namespace std;
int m(vector<int>& w) {
unordered_map<int, int> c;
for (int x : w) {
c[x]++;
}
int p = 0;
for (const auto& [l, q] : c) {
int t = q;
unordered_map<int, int> u;
for (const auto& [a, b] : c) {
if (a < l) {
int f = l - a;
if (c.find(f) != c.end() && u[a] < b && u[f] < c[f]) {
int r = min(b - u[a], c[f] - u[f]);
t += r;
u[a] += r;
u[f] += r;
}
}
}
p = max(p, t);
}
return p;
}
Turing โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#define ll long
void dfs(int node,vector<vector<ll>> &g,vector<bool> &vis,vector<ll> &index,vector<ll> &ds,vector<int> &container){
vis[node]=1;
index.push_back(node);
ds.push_back(container[node]);
for(auto &it: g[node]){
if(!vis[it]){
dfs(it,g,vis,index,ds,container);
}
}
}
vector<int> ss(vector<int> &container,vector<int> &firstIndex,vector<int> &secondIndex,vector<int> &slides){
ll n=container.size();
ll m=firstIndex.size();
vector<vector<ll>> g(n);
for(ll i=0;i<m;i++){
ll l=firstIndex[i]-slides[i];
l=l+1000000000*n;
l%=n;
ll r=secondIndex[i]+slides[i];
r%=n;
g[l].push_back(r);
g[r].push_back(l);
}
vector<bool> vis(n);
vector<int> ans(n);
for(ll i=0;i<n;i++){
vector<ll> index;
vector<ll> ds;
if(!vis[i]){
dfs(i,g,vis,index,ds,container);
}
if(index.empty())continue;
sort(index.begin(),index.end());
sort(ds.begin(),ds.end(),greater<ll>());
for(ll i=0;i<index.size();i++){
ans[index[i]]=ds[i];
}
}
return ans;
}
Maximal Permutation โ
๐1
typedef vector<int> vi;
vi solve(vi &nums, int interns, int timeTaken){
int n=nums.size();
vi ans(n);
priority_queue<int, vi, greater<int>>pq;
for(int i=0; i<min(interns, n); i++){
pq.push(nums[i]+timeTaken);
ans[i]=nums[i]+timeTaken;
}
if(interns>=n)return ans;
for(int i=interns; i<n; i++){
ans[i]=max(nums[i], pq.top())+timeTaken;
pq.pop();
pq.push(ans[i]);
}
return ans;
}
string canInternsDoTheTask(int tasks, int n1, int n2, int n3, int t, int d){
vi arr(tasks, 0);
vi v1=solve(arr, n1, t);
vi v2=solve(v1, n2, t+2);
vi v3=solve(v2, n3, t-2);
int time=v3[tasks-1];
if(time<=d){
return "YES "+to_string(time);
}else{
return "NO "+to_string(time-d);
}
}
Test Creation โ