HELP AVAILABLE
😬 Meesho
😬 Revature
😬 mthree
😬 Microsoft
😬 planview's
😬 IBM
😬 Amazon
DM @Mrtrueliving_ix for Help✔️
DM @Mrtrueliving_ix for Help
Please open Telegram to view this post
VIEW IN TELEGRAM
Job updates Here
💯 Test mails confirmed 👍
Batch : 2023//2024//2025
https://whatsapp.com/channel/0029VahiS3p2v1IyoS891Y1g/1954
💯 Test mails confirmed 👍
Batch : 2023//2024//2025
https://whatsapp.com/channel/0029VahiS3p2v1IyoS891Y1g/1954
WhatsApp.com
🇮🇳</>Code_icons👨💻💯™ | WhatsApp Channel
🇮🇳</>Code_icons👨💻💯™ WhatsApp Channel. Welcome family 🪄🤗
Led by :https://t.me/mrtrueliving_ix
https://wa.me/qr/7JABNUY4KTCXD1
🚀 Code Icon: Your Key to Coding Success 💻
Any Online Assessment Help Available ✅(ON// OFF campus)🔥
Your trusted hub for freshers!…
Led by :https://t.me/mrtrueliving_ix
https://wa.me/qr/7JABNUY4KTCXD1
🚀 Code Icon: Your Key to Coding Success 💻
Any Online Assessment Help Available ✅(ON// OFF campus)🔥
Your trusted hub for freshers!…
Meesho SDE HELP DONE ✔️
3/3 codes done ✅
DM @Mrtrueliving_ix for Help❤️
#Meesho #SDE
Test accomplished ❤️
3/3 codes done ✅
DM @Mrtrueliving_ix for Help❤️
#Meesho #SDE
Test accomplished ❤️
Please open Telegram to view this post
VIEW IN TELEGRAM
Fidelity 12 PM || Help done ✔️
😬 58 MCQs + 1 coding 📱
Test accomplished ❤️
DM @Mrtrueliving_ix✅
#Fidelity_ONCampus #2025Batch
Test accomplished ❤️
DM @Mrtrueliving_ix
#Fidelity_ONCampus #2025Batch
Please open Telegram to view this post
VIEW IN TELEGRAM
IBM CIC HELP AVAILABLE
DM @Mrtrueliving_ix✔️
Prev
https://t.me/code_alphix/5040
https://t.me/code_alphix/5155?single
DM @Mrtrueliving_ix
Prev
https://t.me/code_alphix/5040
https://t.me/code_alphix/5155?single
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Citi
https://jobs.citi.com/job/-/-/287/77226939200?source=APPLICANT_SOURCE-3-354&utm_source=linkedin.com&utm_medium=job_posting&utm_campaign=apac_experienced&utm_content=social_media&utm_term=393693070&ss=paid
Barclays
https://search.jobs.barclays/job/pune/business-analyst/13015/75304821184
Microsoft
https://shorturl.at/vqCf5
https://careers.bcg.com/global/en/job/BCG1US51788EXTERNALENGLOBAL/Junior-Data-Analyst-India-X-Delivery?utm_source=linkedin&utm_medium=phenom-feeds&Source+=LinkedIn+Job+Board
https://remoteyeah.com/remote-jobs/software-engineer-intern-4caf6919-4c07-4d14-8221-ecc8879df6a2?utm_source=linkedin
*Good Opportunities For 22/23/24/2025 Batch ✅*
Morgan Stanley
Associate Software Engineer
Link 🖇️
https://cuvette.tech/app/other-jobs/67aedf5416ea4af278c3b968?referralCode=GEA520
____
Standard Chartered
Backend Developer
Link 🖇️
https://cuvette.tech/app/other-jobs/67aede1a16ea4af278c3b967?referralCode=GEA520
______
BCG X
AI Engineer
Link 🖇️
https://cuvette.tech/app/other-jobs/67aed62458aad5bb9a784736?referralCode=GEA520
https://jobs.citi.com/job/-/-/287/77226939200?source=APPLICANT_SOURCE-3-354&utm_source=linkedin.com&utm_medium=job_posting&utm_campaign=apac_experienced&utm_content=social_media&utm_term=393693070&ss=paid
Barclays
https://search.jobs.barclays/job/pune/business-analyst/13015/75304821184
Microsoft
https://shorturl.at/vqCf5
https://careers.bcg.com/global/en/job/BCG1US51788EXTERNALENGLOBAL/Junior-Data-Analyst-India-X-Delivery?utm_source=linkedin&utm_medium=phenom-feeds&Source+=LinkedIn+Job+Board
https://remoteyeah.com/remote-jobs/software-engineer-intern-4caf6919-4c07-4d14-8221-ecc8879df6a2?utm_source=linkedin
*Good Opportunities For 22/23/24/2025 Batch ✅*
Morgan Stanley
Associate Software Engineer
Link 🖇️
https://cuvette.tech/app/other-jobs/67aedf5416ea4af278c3b968?referralCode=GEA520
____
Standard Chartered
Backend Developer
Link 🖇️
https://cuvette.tech/app/other-jobs/67aede1a16ea4af278c3b967?referralCode=GEA520
______
BCG X
AI Engineer
Link 🖇️
https://cuvette.tech/app/other-jobs/67aed62458aad5bb9a784736?referralCode=GEA520
def getMinimumOperations(tree_nodes, tree_from, tree_to, initial, expected):
adj = [[] for _ in range(tree_nodes)]
for i in range(len(tree_from)):
adj[tree_from[i]].append(tree_to[i])
adj[tree_to[i]].append(tree_from[i])
parent = [-1] * tree_nodes
depth = [0] * tree_nodes
children = [[] for _ in range(tree_nodes)]
def dfs(node, par):
for next_node in adj[node]:
if next_node != par:
parent[next_node] = node
depth[next_node] = depth[node] + 1
children[node].append(next_node)
dfs(next_node, node)
dfs(0, -1)
def flip_subtree(curr_values, node):
new_values = curr_values.copy()
stack = [node]
while stack:
current = stack.pop()
if current % 2 == 0:
new_values[current] = 1 - new_values[current]
stack.extend(children[current])
return new_values
def get_path_to_root(node):
path = []
while node != -1:
path.append(node)
node = parent[node]
return path
operations = 0
current = initial.copy()
for node in range(tree_nodes):
if current[node] != expected[node]:
path = get_path_to_root(node)
found = False
for ancestor in path:
test_values = flip_subtree(current, ancestor)
if test_values[node] == expected[node]:
current = test_values
operations += 1
found = True
break
if not found:
return -1
return operations if current == expected else -1
UkG
UkG || 2yrs EXPERIENCE Help done ✔️
Coding+ git repository💯 🎉
DM @Mrtrueliving_ix, For help
#UkG #2yrs_Experience
Coding+ git repository
DM @Mrtrueliving_ix, For help
#UkG #2yrs_Experience
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Wipro Elite Help available
DM those who need help
@Mrtrueliving_ix
@Mrtrueliving_ix
Previous Helping proofs
https://t.me/code_alphix/5153
https://t.me/code_alphix/5092?single
DM those who need help
@Mrtrueliving_ix
@Mrtrueliving_ix
Previous Helping proofs
https://t.me/code_alphix/5153
https://t.me/code_alphix/5092?single
Limited slots available book your slots
Those who need 💯 Test Clearance 🤗
❤1👀1
All placement Help available
🚫 Wipro Elite ( all time slots)
https://t.me/code_alphix/4859
🚫 IBM
🚫 Amazon SDE
🚫 Cognizant
🚫 Capgemini
🚫 CGI
🚫 Revature
🚫 UST
🚫 Meesho (17th last)
Other OA available
On || off campus
Those who need 💯 placement
DM @Mrtrueliving_ix
@Mrtrueliving_ix
https://t.me/code_alphix/4859
Other OA available
On || off campus
Those who need 💯 placement
DM @Mrtrueliving_ix
@Mrtrueliving_ix
Remote access🔔
Please open Telegram to view this post
VIEW IN TELEGRAM
❤1🔥1
👌1
def solution(S, K):
n = len(S)
res = float('inf')
for i in range(n - K + 1):
t = S[:i] + S[i + K:]
compressed = ''
count = 1
for j in range(1, len(t)):
if t[j] == t[j - 1]:
count += 1
else:
compressed += t[j - 1] + (str(count) if count > 1 else '')
count = 1
if t:
compressed += t[-1] + (str(count) if count > 1 else '')
res = min(res, len(compressed))
return res
Microsoft
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM