Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Cinereous Technologies Pvt Ltd is hiring Freshers for Quality Analyst
Location: Hyderabad
mail: raju@cinereoustechnologies.com
Location: Hyderabad
mail: raju@cinereoustechnologies.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
We are looking for FRESHERS.
If you are someone who is looking to be part of a growing team, please share your updated profile on Pratham.Chilhate@lancesoft.in
Role: Trainee Recruiter
Experience: looking for MBA/B.E./BTech Fresher
Work location: Bangalore
Work Nature: Work from office only
Shifts: Day Shift
If you are someone who is looking to be part of a growing team, please share your updated profile on Pratham.Chilhate@lancesoft.in
Role: Trainee Recruiter
Experience: looking for MBA/B.E./BTech Fresher
Work location: Bangalore
Work Nature: Work from office only
Shifts: Day Shift
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
If you are looking for an amazing work culture and professional growth as a fresher.
TEKsystems is hiring for one of our product-based company.
Kindly share your cvs to agopi@teksystems.com
Role : Remote Associate
Fresher with excellent written and Verbal communication skills
Location : Bangalore
NP: Immediate
TEKsystems is hiring for one of our product-based company.
Kindly share your cvs to agopi@teksystems.com
Role : Remote Associate
Fresher with excellent written and Verbal communication skills
Location : Bangalore
NP: Immediate
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Hiring Freshers | Role: Junior Java Developer.
Location: Bangalore (On-site)
Key Skills: Java, Spring, SQL, GitHub, Postgres
Send CV to varaprasad.v@people-prime.com
Location: Bangalore (On-site)
Key Skills: Java, Spring, SQL, GitHub, Postgres
Send CV to varaprasad.v@people-prime.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
TCS HackQuest
The Contest is open to students (enrolled in any recognized college /university / academic institute) in India who will be graduating in the academic year 2024 with any of the following degrees in any specialization:
Bachelor of Technology (B. Tech)
Bachelor of Engineering (B.E)
Master of Technology (M. Tech)
Master of Engineering (M.E.)
Bachelor of Computer Applications (B.C.A.)
Master of Computer Applications (M.C.A.)
Bachelor of Science (B.Sc. - B.S.)
Master of Science (M.Sc. - M.S.)
https://hackquest.tcsapps.com/
The Contest is open to students (enrolled in any recognized college /university / academic institute) in India who will be graduating in the academic year 2024 with any of the following degrees in any specialization:
Bachelor of Technology (B. Tech)
Bachelor of Engineering (B.E)
Master of Technology (M. Tech)
Master of Engineering (M.E.)
Bachelor of Computer Applications (B.C.A.)
Master of Computer Applications (M.C.A.)
Bachelor of Science (B.Sc. - B.S.)
Master of Science (M.Sc. - M.S.)
https://hackquest.tcsapps.com/
int fun(int a, int b){
return (int)((int)pow(a, b) % (int)(pow(10, 9) + 7));
}
int raisingPower(vector<int> arr){
if(arr.size()<3) return 1;
int result = INT_MAX;
int n = arr.size();
for(int i = 1; i <= n - 2; i++){
if(fun(arr[i], arr[i + 1]) >= fun(arr[i + 1], arr[i + 2])){
result = min(result, i);
}
}
return result + 1;
}
Analyzing arrays โ
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Ankita Bansal on LinkedIn: #great #hurryup #2023passouts #2022passouts | 304 comments
Hello Everyone,
We CelebAI Technologies are hiring for Associate Software Engineer Position(Trainee+ FTE).
We are conducted walk in drive in the office forโฆ | 304 comments on LinkedIn
We CelebAI Technologies are hiring for Associate Software Engineer Position(Trainee+ FTE).
We are conducted walk in drive in the office forโฆ | 304 comments on LinkedIn
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Vestas
Role: Graduate Program
Batch eligible: 2024 passouts
Apply: https://careers.vestas.com/job/Chennai-Engineering,-R&D-&-Innovation-Vestas-Graduate-Programme-TN/1011948301/
Role: Graduate Program
Batch eligible: 2024 passouts
Apply: https://careers.vestas.com/job/Chennai-Engineering,-R&D-&-Innovation-Vestas-Graduate-Programme-TN/1011948301/
Vestas
Engineering, R&D & Innovation - Vestas Graduate Programme
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Meta hiring Software Engineer, Intern/Co-op in New York, New York, United States | LinkedIn
Posted 10:45:27 AM. Want to build new features and improve existing products that more than a billion people around theโฆSee this and similar jobs on LinkedIn.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Rupeek is hiring for Tech Interns
Batch eligible: 2024 passouts
Apply: https://docs.google.com/forms/d/e/1FAIpQLSdGjN3BCF5Nl0kk8jVmsEQ0WedV4XRNDVmnCYNoHKC07MiBGg/viewform
Batch eligible: 2024 passouts
Apply: https://docs.google.com/forms/d/e/1FAIpQLSdGjN3BCF5Nl0kk8jVmsEQ0WedV4XRNDVmnCYNoHKC07MiBGg/viewform
Break the Bricks โ
๐1
def solve(weights, max_limit):
sorted_weights = sorted(filter(lambda x: x != 0, weights), reverse=True)
left, right = 0, len(sorted_weights) - 1
vehicles = 0
while left <= right:
if sorted_weights[left] + sorted_weights[right] <= max_limit:
right -= 1
left += 1
vehicles += 1
return vehicles
weights = list(map(int, input().split()))
max_limit = int(input())
result = solve(weights, max_limit)
print(result, end="")
Warehouse โ
sorted_weights = sorted(filter(lambda x: x != 0, weights), reverse=True)
left, right = 0, len(sorted_weights) - 1
vehicles = 0
while left <= right:
if sorted_weights[left] + sorted_weights[right] <= max_limit:
right -= 1
left += 1
vehicles += 1
return vehicles
weights = list(map(int, input().split()))
max_limit = int(input())
result = solve(weights, max_limit)
print(result, end="")
Warehouse โ