CGI | Associate Engineer Fresher
https://cgi.njoyn.com/corp/xweb/xweb.asp?NTKN=c&clid=21001&Page=JobDetails&Jobid=J0624-1317&BRID=1138128&lang=1
https://cgi.njoyn.com/corp/xweb/xweb.asp?NTKN=c&clid=21001&Page=JobDetails&Jobid=J0624-1317&BRID=1138128&lang=1
LimeChat is hiring for multiple roles !
Backend , frontend, senior SDE , ML Engineer
https://www.linkedin.com/posts/nikhilgupta1997_hiring-engineering-ai-activity-7212310740114817024-lrDc?utm_source=share&utm_medium=member_android
Backend , frontend, senior SDE , ML Engineer
https://www.linkedin.com/posts/nikhilgupta1997_hiring-engineering-ai-activity-7212310740114817024-lrDc?utm_source=share&utm_medium=member_android
Linkedin
Nikhil Gupta on LinkedIn: #hiring #engineering #ai #llms #backend #frontend | 327 comments
Weβre Hiring! Join Our Engineering Team at LimeChat!
We have more than 5 open roles as our tech velocity is heating up.
Weβre looking for the best talent toβ¦ | 327 comments on LinkedIn
We have more than 5 open roles as our tech velocity is heating up.
Weβre looking for the best talent toβ¦ | 327 comments on LinkedIn
Innovacer | 2023/2022 passouts | Data Analyst
https://boards.greenhouse.io/innovaccer/jobs/7269176002
https://boards.greenhouse.io/innovaccer/jobs/7269176002
Deeporion | Software Developer Trainee | 2022 / 2023 / 2024
| Bachelor's degree in Computer Science, Engineering, or a related field | Jaipur, Pune, Banglore, Indore
https://deeporion.com/career?jobId=2&title=Software+developer+trainee
| Bachelor's degree in Computer Science, Engineering, or a related field | Jaipur, Pune, Banglore, Indore
https://deeporion.com/career?jobId=2&title=Software+developer+trainee
Those who need to clear π―
ANY ONLINE EXAM HELP AVAILABLE WITH REMOTE ACCESS π―π»
DM for help
@Mrtrueliving_ix
π― Test clearance π
RevatureFractalwiley edgeSwiggyDe shawUberRedbusCognizantANY ONLINE EXAM HELP AVAILABLE WITH REMOTE ACCESS π―π»
DM for help
@Mrtrueliving_ix
π― Test clearance π
COGNIZANT EXAM HELP GROUP pinned Β«Those who need to clear π― Revature Fractal wiley edge Swiggy De shaw Uber Redbus Cognizant ANY ONLINE EXAM HELP AVAILABLE WITH REMOTE ACCESS π―π» DM for help @Mrtrueliving_ix π― Test clearance πΒ»
import os
from collections import defaultdict
def countVerticalPaths(cost, edge_nodes, edge_from, edge_to, k):
# Write your code here
children = defaultdict(list)
for i in range(edge_nodes - 1):
u, v = edge_from[i] - 1, edge_to[i] - 1
children[u].append(v)
children[v].append(u)
prefixes = defaultdict(int)
prefixes[0] = 1
stack = [(0, 0, False)]
visited = [False] * edge_nodes
visited[0] = True
count = 0
while stack:
node, current_sum, is_backtrack = stack.pop()
if is_backtrack:
prefixes[(current_sum + cost[node]) % k] -= 1
continue
current_mod = (current_sum + cost[node]) % k
count += prefixes[current_mod]
prefixes[current_mod] += 1
stack.append((node, current_sum, True))
for child in children[node]:
if not visited[child]:
visited[child] = True
stack.append((child, current_mod, False))
return count
DTCC -hack tree-python3β
from collections import defaultdict
def countVerticalPaths(cost, edge_nodes, edge_from, edge_to, k):
# Write your code here
children = defaultdict(list)
for i in range(edge_nodes - 1):
u, v = edge_from[i] - 1, edge_to[i] - 1
children[u].append(v)
children[v].append(u)
prefixes = defaultdict(int)
prefixes[0] = 1
stack = [(0, 0, False)]
visited = [False] * edge_nodes
visited[0] = True
count = 0
while stack:
node, current_sum, is_backtrack = stack.pop()
if is_backtrack:
prefixes[(current_sum + cost[node]) % k] -= 1
continue
current_mod = (current_sum + cost[node]) % k
count += prefixes[current_mod]
prefixes[current_mod] += 1
stack.append((node, current_sum, True))
for child in children[node]:
if not visited[child]:
visited[child] = True
stack.append((child, current_mod, False))
return count
DTCC -hack tree-python3β
def count_set_bits(number):
bit_mask = 1
set_bits_count = 0
for bit_position in range(32):
quotient = number // (bit_mask << (bit_position + 1))
remainder = number % (bit_mask << (bit_position + 1)) - (bit_mask << bit_position)
set_bits_count += quotient * (bit_mask << bit_position)
if remainder > 0:
set_bits_count += remainder
if (number >> bit_position) & 1:
set_bits_count += 1
return set_bits_count
def solve(target_count):
if target_count == 0:
return 1
low, high = 1, int(1e9) + 1
while low < high:
mid = (low + high) // 2
current_count = count_set_bits(mid)
if current_count >= target_count + 1:
high = mid
else:
low = mid + 1
return low
def get_value_at_indices(queries):
results = []
for query in queries:
result = solve(query)
results.append(result)
return results
DTCC -femaleβ
bit_mask = 1
set_bits_count = 0
for bit_position in range(32):
quotient = number // (bit_mask << (bit_position + 1))
remainder = number % (bit_mask << (bit_position + 1)) - (bit_mask << bit_position)
set_bits_count += quotient * (bit_mask << bit_position)
if remainder > 0:
set_bits_count += remainder
if (number >> bit_position) & 1:
set_bits_count += 1
return set_bits_count
def solve(target_count):
if target_count == 0:
return 1
low, high = 1, int(1e9) + 1
while low < high:
mid = (low + high) // 2
current_count = count_set_bits(mid)
if current_count >= target_count + 1:
high = mid
else:
low = mid + 1
return low
def get_value_at_indices(queries):
results = []
for query in queries:
result = solve(query)
results.append(result)
return results
DTCC -femaleβ
Fractal
Role : software engineer
#Mission accomplished β
DM for help
@Mrtrueliving_ixπ―
@Mrtrueliving_ixπ―
Role : software engineer
#Mission accomplished β
DM for help
@Mrtrueliving_ixπ―
@Mrtrueliving_ixπ―
Who want Wile edge test
Ping me for 1000% clearance ππ€
Absolutely plag free code β
DM for help @Mrtrueliving_ix
@Mrtrueliving_ix
#paid help
Ping me for 1000% clearance ππ€
Absolutely plag free code β
DM for help @Mrtrueliving_ix
@Mrtrueliving_ix
#paid help
COGNIZANT EXAM HELP GROUP
Fractal Role : software engineer #Mission accomplished β
DM for help @Mrtrueliving_ixπ― @Mrtrueliving_ixπ―
Only only degree students
https://assessment.hackerearth.com/challenges/new/hiring/fractal-associate-hiring-challenge-2024/
Package:5-6Lpa
Mega opportunity..π₯π₯
DM for π― test clearance
@Mrtrueliving_ix
@Mrtrueliving_ix
https://assessment.hackerearth.com/challenges/new/hiring/fractal-associate-hiring-challenge-2024/
Package:5-6Lpa
Mega opportunity..π₯π₯
DM for π― test clearance
@Mrtrueliving_ix
@Mrtrueliving_ix
Bottomline is hiring for Associate Software Engineer
Expected Salary: 7-12 LPA
Batch: 2023/2024
Apply here:
https://boards.greenhouse.io/bottomlinetechnologies/jobs/7498875002?gh_src=e1c2a8322us
Expected Salary: 7-12 LPA
Batch: 2023/2024
Apply here:
https://boards.greenhouse.io/bottomlinetechnologies/jobs/7498875002?gh_src=e1c2a8322us
job-boards.greenhouse.io
Bottomline
Those who need to clear π―
Revature(30th)
Fractal(30th)
wiley edge(3-9pm today)
Swiggy
De shaw
Uber
Redbus
Cognizant
ANY ONLINE EXAM HELP AVAILABLE WITH REMOTE ACCESS π―π»
DM for help
@Mrtrueliving_ix
π― Test clearance π
Revature(30th)
Fractal(30th)
wiley edge(3-9pm today)
Swiggy
De shaw
Uber
Redbus
Cognizant
ANY ONLINE EXAM HELP AVAILABLE WITH REMOTE ACCESS π―π»
DM for help
@Mrtrueliving_ix
π― Test clearance π
Hiring for SDET - Intern & Full time At Cashfree Payments
Batch: 2023, 2024, 2025, 2026
https://docs.google.com/forms/d/e/1FAIpQLSetl8ZhAgiPQBYz-fChjTZHcm_DyKJcLisqvu7VAA9Ba8sZYQ/viewform
Batch: 2023, 2024, 2025, 2026
https://docs.google.com/forms/d/e/1FAIpQLSetl8ZhAgiPQBYz-fChjTZHcm_DyKJcLisqvu7VAA9Ba8sZYQ/viewform
PepenAi | SDE Intern | 2026/2025/2024 passouts
https://wellfound.com/jobs/3044022-sde-intern
Podium | Frontend Developer Intern | 2027/2026/2025 passouts
https://wellfound.com/jobs/2963219-frontend-developer-intern-react-nextjs
https://wellfound.com/jobs/3044022-sde-intern
Podium | Frontend Developer Intern | 2027/2026/2025 passouts
https://wellfound.com/jobs/2963219-frontend-developer-intern-react-nextjs
Wellfound (formerly AngelList Talent)
SDE Intern at PepenAI β’ Bangalore Urban β’ Remote (Work from Home)
PepenAI is hiring a SDE Intern in Bangalore Urban - Apply now on Wellfound (formerly AngelList Talent)! **About Us**
PepenAI is revolutionizing customer support with...
PepenAI is revolutionizing customer support with...