Successfully Cleared HCl R1
DM for test clearance π―
@Mrtrueliving_ix
@Mrtrueliving_ix
Preview
https://t.me/code_alphix/6341?single
DM for test clearance π―
@Mrtrueliving_ix
@Mrtrueliving_ix
Preview
https://t.me/code_alphix/6341?single
π₯1
Cognizant 4 pm Help done π
Test accomplished πͺ
DM @Mrtrueliving_ix for test clearance
#Cts #technical #R3
R2 Review
https://t.me/code_alphix/6311
Test accomplished πͺ
DM @Mrtrueliving_ix for test clearance
All placement help available
#Cts #technical #R3
R2 Review
https://t.me/code_alphix/6311
β€1π«‘1
Toast
Batch : 2025
Apply now
https://www.hackerearth.com/challenges/new/competitive/toast-intern-hiring-challenge-2025/
DM for @Mrtrueliving_ix test clearance β€οΈ
Batch : 2025
Apply now
https://www.hackerearth.com/challenges/new/competitive/toast-intern-hiring-challenge-2025/
DM for @Mrtrueliving_ix test clearance β€οΈ
HackerEarth
Toast Intern Hiring Challenge 2025
Challenge Overview
Toast is calling all aspiring Software Engineer Interns to join our innovative team in Bangalore and Chennai! Youβre just a few steps away from kickstarting your career with a cloud-based, all-in-one digital technology platform thatβs revolutionizingβ¦
Toast is calling all aspiring Software Engineer Interns to join our innovative team in Bangalore and Chennai! Youβre just a few steps away from kickstarting your career with a cloud-based, all-in-one digital technology platform thatβs revolutionizingβ¦
All placement help available
Any Other OA ( On // Off Campus)
DM for 100 % test Clearance with solid success Rate π₯
@Mrtrueliving_ix @Mrtrueliving_ix π
- Goldman Sachs - R2
- Toast
- Infoedge R2
- Cognizant ( Aptitude)
- HackerRank ASTRA - Human + AI
- Meesho SDE
- Zeta
- HCl
Any Other OA ( On // Off Campus)
DM for 100 % test Clearance with solid success Rate π₯
@Mrtrueliving_ix @Mrtrueliving_ix π
Toast Help done β
Test accomplished πͺ
DM @Mrtrueliving_ix for test clearance π―
Test accomplished πͺ
DM @Mrtrueliving_ix for test clearance π―
All placement help available
Infoedge R2 Help available
DM @Mrtrueliving_ix for clearance
Previous helping proofs
https://t.me/code_alphix/6352?single
DM @Mrtrueliving_ix for clearance
Previous helping proofs
https://t.me/code_alphix/6352?single
Goldman Sachs R2 Help available ( 6 pm)
Slots are available || plagfree coding
DM @Mrtrueliving_ix
Test Clearance π€ 100 %
Slots are available || plagfree coding
DM @Mrtrueliving_ix
Test Clearance π€ 100 %
Goldman Sachs R2 Help available
DM @Mrtrueliving_ix for clearance π―
Plagfree πβ€2
def generateResult(N, transactions):
for i in range(N - 1):
if not set(str(transactions[i])) & set(str(transactions[i + 1])):
print("false")
print(sum(transactions))
return
print("true")
print(sum(transactions))
def main():
N = int(input())
transactions = list(map(int, input().split()))
generateResult(N, transactions)
main()
Gs1
β€3
def printMostSignificant(msg):
return max(msg.split(), key=lambda word: sum(ord(c.lower()) - 96 for c in word if c.isalpha()))
if __name__ == "__main__":
msg = input().strip()
print(printMostSignificant(msg))
Gs 2
β€3