Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Position: HR Fresher
Location: Phase 8B, Mohali, Punjab
Interview: Face-to-face only
Requirements: Training or internship in HR.
How to Apply: Send CV to sanjot@brucode.com or call/WhatsApp 7009008101.
Location: Phase 8B, Mohali, Punjab
Interview: Face-to-face only
Requirements: Training or internship in HR.
How to Apply: Send CV to sanjot@brucode.com or call/WhatsApp 7009008101.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company โ Unified Mentor Private Limited
Role โ data analyst intern
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3907324906
Company โ Acencore Technologies
Role โ AI & ML Internship
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/details/work-from-home-ai-ml-internship-at-acencore-technologies1713779302?utm_source=cp_link&referral=web_share
Company โ INI8 Labs Private Limited
Role โ Data Engineering Internship
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/details/data-engineering-internship-in-bangalore-at-ini8-labs-private-limited1713853327?utm_source=cp_link&referral=web_share
Role โ data analyst intern
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3907324906
Company โ Acencore Technologies
Role โ AI & ML Internship
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/details/work-from-home-ai-ml-internship-at-acencore-technologies1713779302?utm_source=cp_link&referral=web_share
Company โ INI8 Labs Private Limited
Role โ Data Engineering Internship
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/details/data-engineering-internship-in-bangalore-at-ini8-labs-private-limited1713853327?utm_source=cp_link&referral=web_share
Internshala
AI & ML Work From Home Internship at Acencore Technologies
Selected intern's day-to-day responsibilities include:
1. Assist in Data Preparation: Support data preprocessing tasks using Python, NumPy, and Pandas, including cleaning, transformation, and feature engineering.
2. NLP Support: Assist in NLP tasksโฆ
1. Assist in Data Preparation: Support data preprocessing tasks using Python, NumPy, and Pandas, including cleaning, transformation, and feature engineering.
2. NLP Support: Assist in NLP tasksโฆ
#include <bits/stdc++.h>
using namespace std;
int findMinimumLengthSubarray(vector<int> arr, int k) {
int n = arr.size();
unordered_map<int, int> freq;
int distinct = 0;
int minLength = INT_MAX;
int left = 0;
for (int right = 0; right < n; ++right) {
if (freq[arr[right]] == 0) {
distinct++;
}
freq[arr[right]]++;
while (distinct >= k) {
minLength = min(minLength, right - left + 1);
freq[arr[left]]--;
if (freq[arr[left]] == 0) {
distinct--;
}
left++;
}
}
return minLength == INT_MAX ? -1 : minLength;
}
Minimum Sub Array โ
using namespace std;
int findMinimumLengthSubarray(vector<int> arr, int k) {
int n = arr.size();
unordered_map<int, int> freq;
int distinct = 0;
int minLength = INT_MAX;
int left = 0;
for (int right = 0; right < n; ++right) {
if (freq[arr[right]] == 0) {
distinct++;
}
freq[arr[right]]++;
while (distinct >= k) {
minLength = min(minLength, right - left + 1);
freq[arr[left]]--;
if (freq[arr[left]] == 0) {
distinct--;
}
left++;
}
}
return minLength == INT_MAX ? -1 : minLength;
}
Minimum Sub Array โ
int
IBMโ
Password string
minimalFilps(string bits)
{
int n = bits.length();
int flipsFromLeft[n];
int flipsFromRight[n];
int flips = 0;
for (
int i = 0; i < n; i++) {
if (bits[i] == '0')
flips++;
flipsFromLeft[i] = flips;
}
flips = 0;
for (
int i = n - 1; i >= 0; i--) {
if (bits[i] == '1')
flips++;
flipsFromRight[i] = flips;
}
int minFlips = INT_MAX;
for (
int i = 1; i < n; i++) {
if (flipsFromLeft[i - 1] + flipsFromRight[i] < minFlips)
minFlips = flipsFromLeft[i - 1] + flipsFromRight[i];
}
return minFlips;
}
IBMโ
Password string
vector<string> areAlmostEquivalent(const vector<string>& s, const vector<string>& t) {
vector<string> result;
for (int i = 0; i < s.size(); ++i) {
vector<int> s_count(26, 0);
vector<int> t_count(26, 0);
for (char c : s[i]) {
s_count[c - 'a']++;
}
for (char c : t[i]) {
t_count[c - 'a']++;
}
bool valid = true;
for (int j = 0; j < 26; ++j) {
if (abs(s_count[j] - t_count[j]) > 3) {
valid = false;
break;
}
}
if (valid) {
result.push_back("YES");
} else {
result.push_back("NO");
}
}
return result;
}
IBMโ
vector<string> result;
for (int i = 0; i < s.size(); ++i) {
vector<int> s_count(26, 0);
vector<int> t_count(26, 0);
for (char c : s[i]) {
s_count[c - 'a']++;
}
for (char c : t[i]) {
t_count[c - 'a']++;
}
bool valid = true;
for (int j = 0; j < 26; ++j) {
if (abs(s_count[j] - t_count[j]) > 3) {
valid = false;
break;
}
}
if (valid) {
result.push_back("YES");
} else {
result.push_back("NO");
}
}
return result;
}
IBMโ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Klenty is hiring for Junior Fullstack Engineer (MERN)
Expected Salary: 5-10 LPA
Apply here:
https://linkedin.com/jobs/view/3907344195/
Expected Salary: 5-10 LPA
Apply here:
https://linkedin.com/jobs/view/3907344195/
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Backend Engineer - API at Argyle
Batch: 2024
Pay : $110k + Stock
Know More: https://boards.greenhouse.io/argyle/jobs/4118289004
Batch: 2024
Pay : $110k + Stock
Know More: https://boards.greenhouse.io/argyle/jobs/4118289004
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Weekday is hiring for SDE 1 (Frontend)
Salary: 14-20 LPA
Apply here:
https://linkedin.com/jobs/view/3908439353/
Salary: 14-20 LPA
Apply here:
https://linkedin.com/jobs/view/3908439353/
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Bahwan Cybertek | Mobile Developer | 2024, 2025 Grads | Expected Salary: 12-15 LPA
https://apply.workable.com/bahwan-cybertek-group/j/A83F554937/
https://apply.workable.com/bahwan-cybertek-group/j/A83F554937/
Workable
Fresher - Mobile development - Bahwan Cybertek Group
Dedication to innovative, sophisticated designs and collaborative problem-solvingExperience in planning and developing websites across multiple products and organizationsExtensive knowledge of web applications, programming languages, and web services โ...
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Nielsen | SDE | 0-3 YOE | 2024, 2023, 2022 Grads | Expected Salary: 15-18 LPA
https://jobs.lever.co/nielsen/404e47c7-d90d-4442-a526-ddb35eac556f/
https://jobs.lever.co/nielsen/404e47c7-d90d-4442-a526-ddb35eac556f/
jobs.lever.co
Nielsen - Backend Engineer (.Net/Java/Python)
About the role Your primary objective is to ensure project goals are achieved and are aligned with business objectives. You will also work closely with your Scrum team and program team to test, develop, refine and implement quality software in productionโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Rapyuta Robotics | SDE | 2024, 2023 Grads | Expected Salary: 12-15LPA
https://apply.workable.com/rapyuta-robotics/j/F875F6F186/
https://apply.workable.com/rapyuta-robotics/j/F875F6F186/
Workable
Rapyuta Robotics
Rapyuta Robotics is a global technology company and ETH Zurich spin-off that is pioneering the domain of Cloud Robotics with the core purpose, "empowering lives with connected machines"
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Keysight is hiring for Intern Tech I
Expected Stipend: 20k - 35k per month
๐Apply here:
https://jobs.keysight.com/careers-home/jobs/26980/job
Expected Stipend: 20k - 35k per month
๐Apply here:
https://jobs.keysight.com/careers-home/jobs/26980/job
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐HARMAN is hiring for INTERN, DEVOPS
Stipend: 15K-30K per month
๐Apply here:
https://jobs.harman.com/en_US/careers/JobDetail/Intern-DevOps/20078
Stipend: 15K-30K per month
๐Apply here:
https://jobs.harman.com/en_US/careers/JobDetail/Intern-DevOps/20078
Harman
Intern, DevOps
def is_prime(n):
if n <= 1:
return False
if n <= 3:
return True
if n % 2 == 0 or n % 3 == 0:
return False
i = 5
while i * i <= n:
if n % i == 0 or n % (i + 2) == 0:
return False
i += 6
return True
def is_googly(n):
digit_sum = sum(int(digit) for digit in str(n))
if is_prime(digit_sum):
return "GOOGLY"
else:
return "NOT GOOGLY"
N = int(input())
print(is_googly(N))
Googly Number โ
if n <= 1:
return False
if n <= 3:
return True
if n % 2 == 0 or n % 3 == 0:
return False
i = 5
while i * i <= n:
if n % i == 0 or n % (i + 2) == 0:
return False
i += 6
return True
def is_googly(n):
digit_sum = sum(int(digit) for digit in str(n))
if is_prime(digit_sum):
return "GOOGLY"
else:
return "NOT GOOGLY"
N = int(input())
print(is_googly(N))
Googly Number โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
from itertools import combinations n=int(input()) a=list(map(int,input().split())) res=0 if n>1: for i in combinations(a,2): if sum(i)%60==0: res+=1 if res! =0: print(res%((10**9)+7)) if res==0 or n<2: print("NO HOURS") Hoursโฆ
#include<stdio.h>
#include<stdlib.h>
#define MOD 1000000007
int compare(const void *a, const void *b) {
return (*(int*)a - *(int*)b);
}
int main() {
int N;
scanf("%d", &N);
if (N <= 1) {
printf("NO HOURS\n");
return 0;
}
int *A = (int*)malloc(N * sizeof(int));
for (int i = 0; i < N; i++) {
scanf("%d", &A[i]);
}
qsort(A, N, sizeof(int), compare);
int count = 0;
for (int i = 0; i < N - 1; i++) {
for (int j = i + 1; j < N; j++) {
if ((A[i] + A[j]) % 60 == 0) {
count = (count + 1) % MOD;
}
}
}
if (count > 0) {
printf("%d\n", count);
} else {
printf("NO HOURS\n");
}
free(A);
return 0;
}
Hours Count โ
#include<stdlib.h>
#define MOD 1000000007
int compare(const void *a, const void *b) {
return (*(int*)a - *(int*)b);
}
int main() {
int N;
scanf("%d", &N);
if (N <= 1) {
printf("NO HOURS\n");
return 0;
}
int *A = (int*)malloc(N * sizeof(int));
for (int i = 0; i < N; i++) {
scanf("%d", &A[i]);
}
qsort(A, N, sizeof(int), compare);
int count = 0;
for (int i = 0; i < N - 1; i++) {
for (int j = i + 1; j < N; j++) {
if ((A[i] + A[j]) % 60 == 0) {
count = (count + 1) % MOD;
}
}
}
if (count > 0) {
printf("%d\n", count);
} else {
printf("NO HOURS\n");
}
free(A);
return 0;
}
Hours Count โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
from itertools import combinations n=int(input()) a=list(map(int,input().split())) res=0 if n>1: for i in combinations(a,2): if sum(i)%60==0: res+=1 if res! =0: print(res%((10**9)+7)) if res==0 or n<2: print("NO HOURS") Hoursโฆ