Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
NYX is hiring for Node.js Developer Intern - Remote
Apply here:
https://linkedin.com/jobs/view/3983310195/?alternateChannel=search
Apply here:
https://linkedin.com/jobs/view/3983310195/?alternateChannel=search
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include<bits/stdc++.h>
#define ll long long
using namespace std;
vector<pair<ll,ll>>solve(ll n,ll m)
{
vector<pair<ll,ll>>path;
ll x=0,y=0;
ll dx=1,dy=1;
while(1)
{
path.push_back({x, y});
ll nx=x+dx;
ll ny=y+dy;
if(nx<0 or nx>=n) dx=-dx;
if(ny<0 or ny>=m) dy=-dy;
x+=dx;
y+=dy;
if((x==0 && y==0) or (x==0 && y==m-1) or (x==n-1 && y==0) or (x==n-1 && y==m-1))
{
path.push_back({x,y});
break;
}
}
return path;
}
signed main()
{
ll n,m; cin>>n>>m;
auto ans=solve(n,m);
for(ll i=0;i<ans.size();i++)
{
cout<<ans[i].first<<" "<<ans[i].second;
if(i!=ans.size()-1) cout<<", ";
}
}
A Ray of Light
Culfit โ
#include <bits/stdc++.h>
#define ll long long
using namespace std;
class FenwickTree {
public:
FenwickTree(ll n) : bit(n + 1, 0) {}
void update(ll index, ll value) {
for (; index < bit.size(); index += index & -index) {
bit[index] += value;
}
}
ll query(ll index) const {
ll sum = 0;
for (; index > 0; index -= index & -index) {
sum += bit[index];
}
return sum;
}
ll rangeQuery(ll left, ll right) const {
return query(right) - query(left - 1);
}
private:
vector<ll> bit;
};
ll solve(vector<ll>& a)
{
ll n=a.size()-1;
vector<ll>compressed(n+1);
vector<ll>values(a.begin()+1,a.end());
sort(values.begin(),values.end());
values.erase(unique(values.begin(),values.end()),values.end());
for (ll i=1;i<=n;i++)
{
a[i]=lower_bound(values.begin(),values.end(),a[i])-values.begin()+1;
}
FenwickTree fenwick(n);
ll count=0;
for (ll j=2;j<=n;j++)
{
if (a[j]<j) count+=fenwick.query(a[j]-1);
if (a[j-1]<j-1) fenwick.update(a[j-1],1);
}
return count;
}
signed main()
{
ll n; cin>>n;
vector<ll>a(n+1);
for (ll i=1;i<=n;i++) cin >> a[i];
cout <<solve(a)<<endl;
return 0;
}
Pairs of equality
Culfit โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <iostream>
#include <vector>
using namespace std;
const int MOD = 1e9 + 7;
int countValidSeries(int n, int m, vector<int>& f) {
vector<vector<int>> dp(n + 1, vector<int>(m + 1, 0));
if (f[0] == 0) {
for (int j = 1; j <= m; ++j) {
dp[1][j] = 1;
}
} else {
dp[1][f[0]] = 1;
}
for (int i = 2; i <= n; ++i) {
if (f[i-1] == 0) {
for (int j = 1; j <= m; ++j) {
dp[i][j] = dp[i-1][j];
if (j > 1) dp[i][j] = (dp[i][j] + dp[i-1][j-1]) % MOD;
if (j < m) dp[i][j] = (dp[i][j] + dp[i-1][j+1]) % MOD;
}
} else {
int j = f[i-1];
dp[i][j] = dp[i-1][j];
if (j > 1) dp[i][j] = (dp[i][j] + dp[i-1][j-1]) % MOD;
if (j < m) dp[i][j] = (dp[i][j] + dp[i-1][j+1]) % MOD;
}
}
int result = 0;
for (int j = 1; j <= m; ++j) {
result = (result + dp[n][j]) % MOD;
}
return result;
}
Flight Series Counter โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Smallcase is hiring for Frontend Developer
6 months internship opportunity
2025 batch eligible
https://smallcase.freshteam.com/jobs/fvvVYk18XC4B/internship-program-2024
6 months internship opportunity
2025 batch eligible
https://smallcase.freshteam.com/jobs/fvvVYk18XC4B/internship-program-2024
Freshteam
Hiring for Internship Program 2024 for Bengaluru - Internship
Posted by : smallcase | CSS,HTML,JAVASCRIPT,REACTJS,REDUX,NEXT.JS
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
UST is hiring for Developer I - Software Engineer (0-2 years)
Expected Salary: 5-10 LPA
Apply here:
https://usource.ripplehire.com/candidate/?token=8YxWjpwDhdL62DFYUIcQ&lang=en&source=USTLINKEDIN#detail/job/21822
Expected Salary: 5-10 LPA
Apply here:
https://usource.ripplehire.com/candidate/?token=8YxWjpwDhdL62DFYUIcQ&lang=en&source=USTLINKEDIN#detail/job/21822
Ripplehire
UST Careers | Latest jobs at UST - Ripplehire.com
Apply Now! This is a wonderful opportunity. Help your friends by sharing this role with them.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Sunstone is hiring for Software Engineer
Expected Salary: 6-14 LPA
Apply here:
https://linkedin.com/jobs/view/3984072465/
Expected Salary: 6-14 LPA
Apply here:
https://linkedin.com/jobs/view/3984072465/
Linkedin
Sunstone hiring Software Engineer in Gurugram, Haryana, India | LinkedIn
Posted 7:46:31 AM. We are seeking a motivated and enthusiastic Junior Flutter Developer to join our mobile developmentโฆSee this and similar jobs on LinkedIn.
SELECT DISTINCT s.room
FROM section s
JOIN schedule sc ON s.schedule_id = sc.schedule_id
WHERE sc.day = 'Monday'
AND sc.starttime = '09:00:00'
AND sc.endtime = '11:00:00';
ZSโ
๐2
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Baker Hughes
๐ Job Title: Summer Internship
โ๐ป YOE: 2025 and 2026 grads
โก๏ธ Apply: https://careers.bakerhughes.com/global/en/job/R124156/Summer-Internships-2025-India
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐ Job Title: Summer Internship
โ๐ป YOE: 2025 and 2026 grads
โก๏ธ Apply: https://careers.bakerhughes.com/global/en/job/R124156/Summer-Internships-2025-India
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)
Genpact is Hiring !
Skill Set - Agility Intake /Claims
Experience - 0-2 years
Location - GGN
Shift- US shift
Qualification - Any except technical
GOOD COMMUNICATION REQUIRED.
Note- Interested candidate can Fill the below form and share their CV at khushboo.jeevtani@genpact.com with the subject line "Application for Insurance.
FORM LINK - https://forms.office.com/pages/responsepage.aspx?id=IIrvvayqgE-zoNmjL5n9M9LTx8HzSktPnzX0f19d6URUMEM5UFdNSENCMkpXVkdSSDZFVUhTUVEyUS4u
Skill Set - Agility Intake /Claims
Experience - 0-2 years
Location - GGN
Shift- US shift
Qualification - Any except technical
GOOD COMMUNICATION REQUIRED.
Note- Interested candidate can Fill the below form and share their CV at khushboo.jeevtani@genpact.com with the subject line "Application for Insurance.
FORM LINK - https://forms.office.com/pages/responsepage.aspx?id=IIrvvayqgE-zoNmjL5n9M9LTx8HzSktPnzX0f19d6URUMEM5UFdNSENCMkpXVkdSSDZFVUhTUVEyUS4u
Office
Please fill out this form
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
L&T Technology Services - MBA Intern Hiring โ 2024 or 2025 pass out batch.
Please register using the below link: https://forms.office.com/pages/responsepage.aspx?id=eDMbMYqOXkujP-gKPYumClSsrm1sEv1BmOXg5_0vsfxUOUY2WUU1MUpRWlBROUtMSFFaSDRSOFZHRi4u
** Please note that applicants that do not fill the above form will not be considered.
Registration End Date: 6:00PM, 31st July 2024
Type: Full time Offline Internship
Location: Mysore
Specialization: B. Tech + Mba in Sales & Marketing
Year of Pass out: Batch of 2024 or 2025
Stipend: As per Industry Standards
Job Brief:
- A Presales Intern acts as a bridge between the sales and technical teams, providing valuable insights and solutions to potential clients.
- This role involves a strategic approach to understanding client needs and aligning product or service offerings accordingly.
Requirement and Skills:
- Excellent communication and presentation skills.
- Strong analytical and problem-solving abilities.
- Ability to work collaboratively in a fast-paced and dynamic environment.
Please register using the below link: https://forms.office.com/pages/responsepage.aspx?id=eDMbMYqOXkujP-gKPYumClSsrm1sEv1BmOXg5_0vsfxUOUY2WUU1MUpRWlBROUtMSFFaSDRSOFZHRi4u
** Please note that applicants that do not fill the above form will not be considered.
Registration End Date: 6:00PM, 31st July 2024
Type: Full time Offline Internship
Location: Mysore
Specialization: B. Tech + Mba in Sales & Marketing
Year of Pass out: Batch of 2024 or 2025
Stipend: As per Industry Standards
Job Brief:
- A Presales Intern acts as a bridge between the sales and technical teams, providing valuable insights and solutions to potential clients.
- This role involves a strategic approach to understanding client needs and aligning product or service offerings accordingly.
Requirement and Skills:
- Excellent communication and presentation skills.
- Strong analytical and problem-solving abilities.
- Ability to work collaboratively in a fast-paced and dynamic environment.
๐ฑ1