Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
TNS is hiring for Software Development Engineer
Experience: 0 - 1 years
Expected Salary: 6-12 LPA
Apply here: https://tnsi.wd1.myworkdayjobs.com/Search/job/IND---Noida/Software-Development-Engineer_R2003?source=LinkedIn
Larsen & Turbo is hiring for Software Engg
Experience: 0 - 1 years
Expected Salary: 4-8 LPA
Apply here: https://larsentoubrocareers.peoplestrong.com/job/detail/LNT_SE_1152365
Experience: 0 - 1 years
Expected Salary: 6-12 LPA
Apply here: https://tnsi.wd1.myworkdayjobs.com/Search/job/IND---Noida/Software-Development-Engineer_R2003?source=LinkedIn
Larsen & Turbo is hiring for Software Engg
Experience: 0 - 1 years
Expected Salary: 4-8 LPA
Apply here: https://larsentoubrocareers.peoplestrong.com/job/detail/LNT_SE_1152365
Myworkdayjobs
Software Development Engineer
An extraordinarily talented group of individuals work together every day to drive TNS' success, from both professional and personal perspectives. Come join the excellence! Overview The Software area is responsible for the development of computer programmingโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Apple ML research in Paris has multiple open internship positions!๐
We are looking for Ph.D. students interested in generative modeling, optimization, large-scale learning or uncertainty quantification, with applications to challenging scientific problems.
Infos:
- all internships must be on-site; we will support travel and visa procedures if needed
- Length: 4-6 months, anytime from now until late sep. 25
- This is a research internship: the objective is to publish exciting ideas
Requirements:
- Track record of publications in ML conferences like NeurIPS, ICLR, ICML, Aistats, etc... Additional publications in related fields will be considered
- Experience coding for ML research in Python (e.g., numpy, PyTorch or Jax)
Apply here: https://jobs.apple.com/en-gb/details/200570877/aiml-intern-in-ml-research-mlr?team=MLAI
If you have any questions, please reach out to MLR_Paris_Internships@group.apple.com
We are looking for Ph.D. students interested in generative modeling, optimization, large-scale learning or uncertainty quantification, with applications to challenging scientific problems.
Infos:
- all internships must be on-site; we will support travel and visa procedures if needed
- Length: 4-6 months, anytime from now until late sep. 25
- This is a research internship: the objective is to publish exciting ideas
Requirements:
- Track record of publications in ML conferences like NeurIPS, ICLR, ICML, Aistats, etc... Additional publications in related fields will be considered
- Experience coding for ML research in Python (e.g., numpy, PyTorch or Jax)
Apply here: https://jobs.apple.com/en-gb/details/200570877/aiml-intern-in-ml-research-mlr?team=MLAI
If you have any questions, please reach out to MLR_Paris_Internships@group.apple.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
QA Test Intern - LY-TH01
https://lydesign.keka.com/careers/jobdetails/55051
https://lydesign.keka.com/careers/jobdetails/55051
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Meritshot on LinkedIn: #hiring #freshers #datascience #dataanalysis #dataanalytics #ml #aiโฆ | 14 comments
We are Hiring for Data Science and Data Analytics Interns (Work From Home Opportunity).
Suitable for College students wanting to gain experience in the Dataโฆ | 14 comments on LinkedIn
Suitable for College students wanting to gain experience in the Dataโฆ | 14 comments on LinkedIn
#include <iostream>
#include <vector>
using namespace std;
int main() {
int n;
cin >> n;
vector<int> a(n), b(n);
for (int i = 0; i < n; i++) cin >> a[i];
for (int i = 0, j = 0, k = n - 1; i < n; i++) {
b[i] = (i % 2 == 0) ? a[j++] : a[k--];
}
for (int i = 0; i < n; i++) cout << b[i] << " ";
return 0;
}
Visa OA โ
๐3
Capgemini Offer letter out Diversity Hiring ๐ฅ
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)
Linkedin
Aayush Sharma on LinkedIn: #camera #c #embedded #linux #windows #hyderabad #qualcomm | 57 comments
Hi All,
We have several development openings for Camera team in Hyderabad. Candidates having good exp on C++ and camera technology will be a ideal fit for theโฆ | 57 comments on LinkedIn
We have several development openings for Camera team in Hyderabad. Candidates having good exp on C++ and camera technology will be a ideal fit for theโฆ | 57 comments on LinkedIn
public static String getOverallScore(String input) {
Stack<Character> stack = new Stack<>();
for (char symbol : input.toCharArray()) {
while (!stack.isEmpty() && hasHigherPrecedence(symbol, stack.peek())) {
stack.pop();
}
stack.push(symbol);
}
StringBuilder result = new StringBuilder();
for (char symbol : stack) {
result.append(symbol);
}
return result.toString();
}
private static boolean hasHigherPrecedence(char newSymbol, char existingSymbol) {
String precedence = "ABCDEF";
return precedence.indexOf(newSymbol) < precedence.indexOf(existingSymbol);
}
Thoughtwork โ
static final int MOD = 1000000007;
public static long calculateSurprisingSum(long N) {
long sum = 0;
for(int i = 0; i <= 33; i++) {
for(int j = i + 1; j <= 33; j++) {
for(int k = j + 1; k <= 33; k++) {
long number = (1L << i) + (1L << j) + (1L << k);
if(number <= N) {
sum = (sum + number) % MOD;
}
}
}
}
return sum;
}
Find surprising number sum โ
ZS
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
static final int MOD = 1000000007; public static long calculateSurprisingSum(long N) { long sum = 0; for(int i = 0; i <= 33; i++) { for(int j = i + 1; j <= 33; j++) { for(int k = j + 1; k <= 33; k++) { โฆ
def surprising_number_sum(N):
MOD = 1000000007
surprising_sum = 0
for num in range(1, N + 1):
if bin(num).count('1') == 3:
surprising_sum += num
return surprising_sum % MOD
MOD = 1000000007
surprising_sum = 0
for num in range(1, N + 1):
if bin(num).count('1') == 3:
surprising_sum += num
return surprising_sum % MOD
Citi (intern) โ
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Send your resumes to careers@iorbit-tech.com