Morningstar MDP help done ✅
Slot -2
All MCQs are done ✅
All placement help available
DM @MRTRUELIVING_IX
#Morningstar #MDP #HELPDONE
Please open Telegram to view this post
VIEW IN TELEGRAM
Codingblocks Hiring now
https://hire.codingblocks.com/jobs/488
https://hire.codingblocks.com/jobs/489
https://hire.codingblocks.com/jobs/485
https://hire.codingblocks.com/jobs/486
Experience (1-3yr)
https://hire.codingblocks.com/jobs/487
Dm for 💯 test Clearance ❤️
@MRTRUELIVING_IX ✅
@MRTRUELIVING_IX ✅
https://hire.codingblocks.com/jobs/488
https://hire.codingblocks.com/jobs/489
https://hire.codingblocks.com/jobs/485
https://hire.codingblocks.com/jobs/486
Experience (1-3yr)
https://hire.codingblocks.com/jobs/487
Dm for 💯 test Clearance ❤️
@MRTRUELIVING_IX ✅
@MRTRUELIVING_IX ✅
IBM Hiring
Role : Associate System Engineer
Eligible : 2024 only
Apply Link
https://ibmglobal.avature.net/en_US/careers/JobDetail/Associate-System-Engineer/7789
Role : Associate System Engineer
Eligible : 2024 only
Apply Link
https://ibmglobal.avature.net/en_US/careers/JobDetail/Associate-System-Engineer/7789
Amazon SDE help done ✅
Test accomplished ❤️
All placement help available
DM @MRTRUELIVING_IX📱
#AMAZON #SDE ✅
Test accomplished ❤️
All placement help available
DM @MRTRUELIVING_IX
#AMAZON #SDE ✅
Please open Telegram to view this post
VIEW IN TELEGRAM
https://assessment.hackerearth.com/challenges/new/hiring/uniqode-winter-internship-challenge-2025/
Uniqode
Help available
DM https://t.me/mrtrueliving_ix
DM @MRTRUELIVING_IX🔸
Test Clearance✔️ 💯
Uniqode
Help available
DM https://t.me/mrtrueliving_ix
DM @MRTRUELIVING_IX
Test Clearance
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
All placement help available
Wipro: https://t.me/code_alphix/2890
Uniqode: https://t.me/code_alphix/4675?single
Amazon: https://t.me/code_alphix/4665?single
Morningstar:
https://t.me/code_alphix/4656
Zeta: https://t.me/code_alphix/4634
Ascendion:
https://t.me/code_alphix/3482?single
Capgemini :
https://t.me/code_alphix/4377?single
Cognizant:
https://t.me/code_alphix/4636
Hcl : https://t.me/code_alphix/4294
Tech Mahindra:
https://t.me/code_alphix/3553
https://t.me/code_alphix/4472?single
DM @MRTRUELIVING_IX
@Codealphix @MRTRUELIVING_IX
Please open Telegram to view this post
VIEW IN TELEGRAM
🎯Zensar ~ Fresher's Engineer Opportunity
🎯Apply Link- https://forms.office.com/pages/responsepage.aspx?id=Mj58IBVx006KVSL37bd9ybeqpIAtYiJKvHTQhHsYIn5UMFNHUktTVEJDNUlUSzdGMENHUktOWEg1SS4u&route=shorturl
100% test link ❤️
🎯Apply Link- https://forms.office.com/pages/responsepage.aspx?id=Mj58IBVx006KVSL37bd9ybeqpIAtYiJKvHTQhHsYIn5UMFNHUktTVEJDNUlUSzdGMENHUktOWEg1SS4u&route=shorturl
100% test link ❤️
Please open Telegram to view this post
VIEW IN TELEGRAM
Uniqode Help done ✅
All MCQs+ Coding are done✅
15 - McQs
2 - Coding📱
Test accomplished✅
DM @MRTRUELIVING_IX✅
#Uniqode #Summer #Done #2025
All MCQs+ Coding are done
15 - McQs
2 - Coding
Test accomplished
All placement help available ( 💯 test Clearance)
DM @MRTRUELIVING_IX
#Uniqode #Summer #Done #2025
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
https://assessment.hackerearth.com/challenges/new/hiring/uniqode-winter-internship-challenge-2025/
Uniqode
Help available
DM https://t.me/mrtrueliving_ix
DM @MRTRUELIVING_IX🔸
Test Clearance✔️ 💯
Uniqode
Batch : 2024 & 2025
Help available
DM https://t.me/mrtrueliving_ix
DM @MRTRUELIVING_IX
Test Clearance
Please open Telegram to view this post
VIEW IN TELEGRAM
Texas Instrument Hiring !!
Role - Digital Intern
Batch - 2025
Link - https://edbz.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX/job/25000170
Role - Digital Intern
Batch - 2025
Link - https://edbz.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX/job/25000170
Texas Instruments
Digital Intern
Change the world. Love your job. As a Digital IC Design Engineering intern, you'll architect new TI products and make our customers' visions a reality. You'll define, design, model, implement and document analog, digital, and RF integrated circuits (ICs).…
Uniqode free answers
Join our community:
https://t.me/code_alphix
Need coding help? We're here to assist you!
#coding #programming #codingsolutions
Join our community:
https://t.me/code_alphix
Reach 1.8k subscribers and get exclusive access to our first code!
Need coding help? We're here to assist you!
#coding #programming #codingsolutions
def lcp_len(s1, s2):
m = min(len(s1), len(s2))
for i in range(m):
if s1[i] != s2[i]:
return i
return m
def max_lcp_len(strs):
if not strs:
return 0
max_len = 0
n = len(strs)
for i in range(n):
for j in range(i + 1, n):
len_lcp = lcp_len(strs[i], strs[j])
max_len = max(max_len, len_lcp)
return max_len
def solve(N, arr):
res = []
for i in range(N):
rem_strs = arr[:i] + arr[i+1:]
max_len = max_lcp_len(rem_strs)
res.append(max_len)
return res
Common prefix
Please open Telegram to view this post
VIEW IN TELEGRAM
❤5🎉1🫡1
def solve(n, nums, k, q, queries):
from collections import deque
dp = [0] * n
dq = deque()
for i in range(n):
while dq and dq[0] < i - k:
dq.popleft()
if dq:
dp[i] = max(nums[i], dp[dq[0]] + nums[i])
else:
dp[i] = nums[i]
while dq and dp[dq[-1]] < dp[i]:
dq.pop()
dq.append(i)
return [dp[q-1] for q in queries]
Alice in boderland
Please open Telegram to view this post
VIEW IN TELEGRAM
❤5🫡2🎉1