Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Probo is hiring for Data Analyst Intern
Expected Stipend: 25K per month
Apply here:
https://probo.hire.trakstar.com/jobs/fk027hv?pjb_hash=Y7bAmjMPq4
Expected Stipend: 25K per month
Apply here:
https://probo.hire.trakstar.com/jobs/fk027hv?pjb_hash=Y7bAmjMPq4
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)
Openin App is hiring ReactJS intern
Batch: 2024, 2025, 2026 grads
Stipend: 35k- 40k per months
Apply here: https://openinapp.freshteam.com/jobs/PEnkxUAybeIx/react-js-developer-intern?ft_source=6000312750&ft_medium=6000257244
Batch: 2024, 2025, 2026 grads
Stipend: 35k- 40k per months
Apply here: https://openinapp.freshteam.com/jobs/PEnkxUAybeIx/react-js-developer-intern?ft_source=6000312750&ft_medium=6000257244
Freshteam
Hiring for React.Js Developer - Intern for Bengaluru - Internship
Posted by : OpeninApp | REACTJS,NEXT.JS,Axios,UI DESIGN,UI,API
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Gadgeon Systems Inc. Hiring Fresher Firmware Engineer Intern ๐
Job Designation : Firmware Intern
Requirements and Skills
โข Degree - B.Tech/ M.Tech
โข Solid programming experience in C or C++
โข Team Player, can work well with maintaining track of projects
Interested candidates please apply on nithya.km@gadgeon.com
Job Designation : Firmware Intern
Requirements and Skills
โข Degree - B.Tech/ M.Tech
โข Solid programming experience in C or C++
โข Team Player, can work well with maintaining track of projects
Interested candidates please apply on nithya.km@gadgeon.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Internship Opportunity!
BDO India is hiring interns for its Actuarial Team.
Candidates should be graduates and must have cleared at least 3 CT Papers, including CM1.
Preferred skills include knowledge of Excel, R, and Python.
Location: Mumbai/Gurugram with a hybrid working model.
If you know someone who would be a great fit, please recommend them or reach out to Shilpy Kalia at shilpykalia@bdo.in with the subject line "BDO India - Actuarial Intern."
BDO India is hiring interns for its Actuarial Team.
Candidates should be graduates and must have cleared at least 3 CT Papers, including CM1.
Preferred skills include knowledge of Excel, R, and Python.
Location: Mumbai/Gurugram with a hybrid working model.
If you know someone who would be a great fit, please recommend them or reach out to Shilpy Kalia at shilpykalia@bdo.in with the subject line "BDO India - Actuarial Intern."
#include <bits/stdc++.h>
using namespace std;
void f(int i,int m,int down, int power,int& ans){
if (i > m+2) return;
if (i < 0) return;
if(i == m) ans++;
f(i+pow(2,power),m,1,power+1,ans);
if (down)
{
f(i-1,m,0,power,ans);
}
}
int solve(int m){
int ans = 0;
f(1,m,1,0,ans);
return ans;
}
Game of stairs โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
#include <bits/stdc++.h> using namespace std; void f(int i,int m,int down, int power,int& ans){ if (i > m+2) return; if (i < 0) return; if(i == m) ans++; f(i+pow(2,power),m,1,power+1,ans); if (down) { f(i-1,m,0,power,ans); โฆ
Parallel Universe Chess Board โ
#include <bits/stdc++.h>
#define ll long long
using namespace std;
signed main()
{
ll sz,n; cin>>sz>>n;
vector<ll>a(n);
for(ll i=0;i<n;i++) cin>>a[i];
vector<vector<ll>>ans;
for(ll i=0;i<sz-1;i++) a.insert(a.begin(),0);
reverse(a.begin(),a.end());
for(ll i=0;i<n;i++)
{
vector<ll>curr;
for(ll j=i;j<i+sz;j++) curr.push_back(a[j]);
ans.push_back(curr);
}
reverse(ans.begin(),ans.end());
for(ll i=0;i<ans.size();i++)
{
for(ll j=0;j<ans[i].size();j++) cout<<ans[i][j]<<" ";
cout<<endl;
}
return 0;
}
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Hyland
Role: Developer 1
Batch eligible: 2023 and 2024 grads
Apply: https://careers-hyland.icims.com/jobs/11420/developer-1/job
Role: Developer 1
Batch eligible: 2023 and 2024 grads
Apply: https://careers-hyland.icims.com/jobs/11420/developer-1/job
๐1
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <bits/stdc++.h>
using namespace std;
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
typedef tree<int, null_type, less_equal<int>, rb_tree_tag, tree_order_statistics_node_update> pbds;
vector<int> ttl_cache(int n, vector<vector<int>> entries, vector<int> queries){
int q = queries.size();
vector<pair<int,int>> arr;
for(int i=0;i<q;i++){
arr.push_back({queries[i],i});
}
sort(arr.begin(),arr.end());
vector<int> res(q);
pbds st;
int i=0;
int x = arr[i].first;
sort(entries.begin(), entries.end());
for(auto &v:entries){
while(v[0]>x){
res[arr[i].second] = st.size() - st.order_of_key(x);
i++;
if(i==q) return res;
x = arr[i].first;
}
st.insert(v[0]+v[1]);
}
for(;i<q;i++){
x = arr[i].first;
res[arr[i].second] = st.size() - st.order_of_key(x);
}
return res;
}
TTL Cache โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
int countBits(int v) {
int count = 0;
while (v > 0) {
count += v & 1;
v >>= 1;
}
return count;
}
string palindromeChecker(string s, vector<int> startIndex, vector<int> endIndex, vector<int> subs) {
int bp = 0;
string myString = "";
vector<int> L;
L.push_back(bp);
for (char i : s) {
int ci = i - 'a';
bp = bp ^ (1 << ci);
L.push_back(bp);
}
int q = startIndex.size();
int c1 = L[startIndex[0]];
int c2 = L[endIndex[0] + 1];
int di = c1 ^ c2;
int ooc = countBits(di);
bool r = (ooc - subs[0] * 2) <= 1;
if (r) {
myString = "1";
} else {
myString = "0";
}
return myString;
}
Can you make a palindrome
BNY Mellon โ
โค1๐คฉ1
def count_subsequences(s1, s2):
m, n = len(s1), len(s2)
dp = [[0] * (n + 1) for _ in range(m + 1)]
for j in range(n + 1):
dp[0][j] = 1
for i in range(1, m + 1):
for j in range(1, n + 1):
if s1[i - 1] == s2[j - 1]:
dp[i][j] = dp[i][j - 1] + dp[i - 1][j - 1]
else:
dp[i][j] = dp[i][j - 1]
return dp[m][n]
Source : Hola โ
m, n = len(s1), len(s2)
dp = [[0] * (n + 1) for _ in range(m + 1)]
for j in range(n + 1):
dp[0][j] = 1
for i in range(1, m + 1):
for j in range(1, n + 1):
if s1[i - 1] == s2[j - 1]:
dp[i][j] = dp[i][j - 1] + dp[i - 1][j - 1]
else:
dp[i][j] = dp[i][j - 1]
return dp[m][n]
Source : Hola โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
int countBits(int v) { int count = 0; while (v > 0) { count += v & 1; v >>= 1; } return count; } string palindromeChecker(string s, vector<int> startIndex, vector<int> endIndex, vector<int> subs) { int bp = 0;โฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Tech Mahindra is hiring for SERVICE DESK AGENTS
Job Location : Noida (nsez)
-- Should have good and working knowledge on windows/mac os, AD, multifactor authentication, access request of applications.
-- Experience on ITSM TOOLS, remote tools and troubleshooting.
-- Understanding of priority and escalation matrix.
--
Troubleshooting on Application support, printers, mfd's, von software,
collaboration tools, password reset tools, ms windows & office,
desktops, laptops, ipad peripherals & networking etc
-- aware of kpi's and sla's
5 days working
both side cab facility (under 30km of radius from ofc campus)
FRESHERS WITH GOOD COMMUNICATION SKILLS & BASIC TECHNICAL KNOWLEDGE CAN ALSO APPLY.
GRADUATION IS MANDATORY.
ONLY IMMEDIATE JOINERS CAN APPLY.
Call or share your resume @ 8527249359 / ns00834085@techmahindra.com
Job Location : Noida (nsez)
-- Should have good and working knowledge on windows/mac os, AD, multifactor authentication, access request of applications.
-- Experience on ITSM TOOLS, remote tools and troubleshooting.
-- Understanding of priority and escalation matrix.
--
Troubleshooting on Application support, printers, mfd's, von software,
collaboration tools, password reset tools, ms windows & office,
desktops, laptops, ipad peripherals & networking etc
-- aware of kpi's and sla's
5 days working
both side cab facility (under 30km of radius from ofc campus)
FRESHERS WITH GOOD COMMUNICATION SKILLS & BASIC TECHNICAL KNOWLEDGE CAN ALSO APPLY.
GRADUATION IS MANDATORY.
ONLY IMMEDIATE JOINERS CAN APPLY.
Call or share your resume @ 8527249359 / ns00834085@techmahindra.com