COGNIZANT EXAM HELP GROUP
3.55K subscribers
5.3K photos
21 videos
10 files
3.22K links
๐Ÿš€ Placement Preparation Hub

๐ŸŽ“ From Preparation to Placement

โšก OA Support โ€ข Coding โ€ข Aptitude โ€ข Technical โ€ข HR

๐ŸŒŸ Trusted by Hundreds of Students

๐Ÿ† 372+ Placement Successes โœ…

๐Ÿ“ฉ DM: @Mrtrueliving_ix

๐Ÿ’™ Turning Aspirations into Offer Letters.
Download Telegram
Starium

All 5/5 Codes are done
๐Ÿ“ฑ๐Ÿ“ฑ

Test accomplished
๐Ÿ“ฑ

DM -
@mrtrueliving_ix

100/100
โ–ถ๏ธ๐Ÿ˜

Who need codes DM

๐Ÿ’ฏ Plag free codes I will give

All placement help available

#Starium #coding #done
Please open Telegram to view this post
VIEW IN TELEGRAM
Channel name was changed to ยซStarium IBM Cognizant Visa Rupeek LinkedIn Airtel Accenture Oracle De Shaw exam helpยป
All placement help available:

โœ… IBM -CIC
โœ… COGNIZANT
โœ… ORACLE
โœ… ACCENTURE (18TH)
โœ… STRIPE
โœ… STARIUM(UNSTOP)

Help available { On // Off campus}

-
@mrtrueliving_ix

-
@mrtrueliving_ix

-
@mrtrueliving_ix

๐Ÿ’ฏ Test Clearance
Please open Telegram to view this post
VIEW IN TELEGRAM
Pay u - php

https://cuvette.tech/app/other-jobs/670e8bf911c05ed6de2b88d9?referralCode=GEA52O


Razor pay

20/21/22/23/24

https://cuvette.tech/app/other-jobs/670e8bf911c05ed6de2b88d9?referralCode=GEA52O


Turing - python engineer

https://cuvette.tech/app/other-jobs/670e8af9ccbab11550226bac?referralCode=GEA52O


Thomas reuters- cloud engineer

https://cuvette.tech/app/other-jobs/670d17c5311f5e679ae06fdd?referralCode=GEA52O


NTT DATA- data engineer

https://cuvette.tech/app/other-jobs/670d17235868d9d139a664bd?referralCode=GEA52O


Master card- test engineer

https://cuvette.tech/app/other-jobs/6709183fb87c84bbd615ddbd?referralCode=GEA52O

American expresS

https://cuvette.tech/app/other-jobs/67091736033fbecf5b8d28d3?referralCode=GEA52O


Barclays - fresher

https://cuvette.tech/app/other-jobs/6707cc387b5d21c0929f6605?referralCode=GEA52O


Cognizant - python developer

https://cuvette.tech/app/other-jobs/670677a78c3419c2ac4c1a11?referralCode=GEA52O


Zs - business analyst

0-3 yr fresher

https://cuvette.tech/app/other-jobs/670674b98c3419c2ac4c1a0f?referralCode=GEA52O


Turing- python solutions developer

https://cuvette.tech/app/other-jobs/6703e15c976ddbf7f469b949?referralCode=GEA52O


Nvida-Software Engineer
https://cuvette.tech/app/other-jobs/66fa9e2bd56aa17868e83e21?referralCode=GEA52O

Spinny - business analyst

https://cuvette.tech/app/other-jobs/66faa15a40c8c4972292bf86?referralCode=GEA52O


Micron- ADE

https://cuvette.tech/app/other-jobs/66f414fc5e0c1524da51d741?referralCode=GEA52O


Google -intern

https://cuvette.tech/app/other-jobs/66f2a9c3f6aeb86d40a14b67?referralCode=GEA52O
IBM

Coding along with SQL are done
๐Ÿ“ฑ

Test accomplished
๐Ÿ”ˆ

DM for any placement help

-
@mrtrueliving_ix

-
@mrtrueliving_ix

-
@mrtrueliving_ix

All placement help available
#IBM #coding  #Done
Please open Telegram to view this post
VIEW IN TELEGRAM
UNLOCK FREE STARIMUM EXAM CODING ANSWERS!

๐Ÿ””FOLLOW @CODE_ALPHIX NOW!๐Ÿ””

SHARE WITH FELLOW CODERS!

#StariiumExam #CodingAnswers #FreeResources #CodingCommunity

TAG A FRIEND WHO NEEDS THIS!

@CODE_ALPHIX.

@CODE_ALPHIX

@CODE_ALPHIX

โœˆ๏ธ๐Ÿ“ฑ๐Ÿ“ฑ
Please open Telegram to view this post
VIEW IN TELEGRAM
๐Ÿ‘1
import sys
from collections import deque

# Define a class for tree nodes
class TreeNode:
def __init__(self, value):
self.val = value
self.left = None
self.right = None

# Insert a value into the Binary Search Tree (BST)
def insert_bst(root, value):
if root is None:
return TreeNode(value) # Create a new node if the current node is None
if value < root.val:
root.left = insert_bst(root.left, value) # Insert into the left subtree if the value is smaller
else:
root.right = insert_bst(root.right, value) # Insert into the right subtree if the value is larger
return root

# Find the k-th smallest element in the BST using in-order traversal
def kth_smallest(root, k):
stack = []
current = root
count = 0

while True:
# Traverse the left subtree
while current is not None:
stack.append(current)
current = current.left

if not stack:
return None # If the stack is empty, there are fewer than k elements

# Pop the node from the stack
current = stack.pop()
count += 1

# If the count matches k, return the current node's value
if count == k:
return current.val

# Traverse the right subtree
current = current.right

# Main function to read input and output the k-th smallest element
def main():
# Read the number of nodes and the value of k
n, k = map(int, sys.stdin.readline().strip().split())
# Read the values to insert into the BST
values = list(map(int, sys.stdin.readline().strip().split()))

root = None
# Insert all values into the BST
for value in values:
root = insert_bst(root, value)

# Find and print the k-th smallest element
result = kth_smallest(root, k)
print(result)

# Entry point of the script
if __name__ == "__main__":
main()

K-th smallest element // starium๐Ÿ‘

5/ 5 ๐Ÿ‘

Stay tuned

@CODE_ALPHIX

Test accomplished ๐Ÿ“ฃ๐Ÿ’ฏโ–ถ๏ธ
Please open Telegram to view this post
VIEW IN TELEGRAM
๐Ÿ‘13๐ŸŽ‰3โค1๐Ÿ”ฅ1๐Ÿ‘Œ1๐Ÿ†1๐Ÿซก1
IBM

Both Coding ๐Ÿ’ฏ
๐Ÿ“ฑ

Test accomplished
๐Ÿ”ˆ

DM for any placement help

-
@mrtrueliving_ix

-
@mrtrueliving_ix

-
@mrtrueliving_ix

All placement help available
#IBM #coding  #Done
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Valuefy-On campus

With remote access {clg lab}

Test accomplished

All 3 codes are done
๐Ÿ“ฃ๐Ÿ’ฏโค๏ธ

Leading with rank-1 ๐Ÿ˜‰๐Ÿ‘Œ

All placement help available

-
@mrtrueliving_ix

-
@mrtrueliving_ix

#Valuefy #coding #Done
Please open Telegram to view this post
VIEW IN TELEGRAM
๐Ÿ‘1
Starium

All 5/5 codes are done โœ…๐Ÿ’ฏ

100/100 ๐Ÿš€
๐Ÿ””

All placement help available

-
@mrtryeliving_ix
Please open Telegram to view this post
VIEW IN TELEGRAM
HELP AVAILABLE

IBM CIC{6PM}

https://t.me/code_alphix/3118

NIVIDA {6PM}

DM-
@MRTRUELIVING_IX

๐Ÿ’ฏ TEST CLEARANCE
โ–ถ๏ธ๐Ÿ’ฏ
Please open Telegram to view this post
VIEW IN TELEGRAM
CISCO all Codes available

DM @mryrueliving_ix
CISCO - Software Engineer

All 3/3 coding are done
โ–ถ๏ธ๐Ÿ˜‡

Test accomplished
๐Ÿฅณ

All placement help available

-
@mrtrueliving_ix

-
@mrtrueliving_ix

-
@mrtrueliving_ix

#CISCO #Software_Engineer #coding #Successfully
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
๐Ÿ‘1๐ŸŽ‰1