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
🤗🎉🎯
This media is not supported in your browser
VIEW IN TELEGRAM
This media is not supported in your browser
VIEW IN TELEGRAM
This media is not supported in your browser
VIEW IN TELEGRAM
Meesho

BA fresher

Slot // 3
Test accomplished 📱

All sections are done

All placement help available

Dm @mrtrueliving_ix 💯
👍1
All placement help available

Wipro


With 💯 test Clearance 👌

https://t.me/code_alphix/2143

Accenture


https://t.me/code_alphix/2232?single


Choose correct path


All slots are available

DM @mrtrueliving_ix 💯

@mrtrueliving_ix

#100% clearance ▶️

Limited slots are available


💯 Remote access ☄️⚙️


Attention everyone don't DM for juspay
Huge competition for juspay

please think 🤔 again once you're talking paid help { personal opinion}

#team_alphix 👍
def specialBinaryTree(arr):
    from collections import Counter
    freq = Counter(arr)
    min_val, max_val = min(arr), max(arr)
    count = 0
   
    for root in range(min_val, max_val + 1):
        l, r = min_val, max_val
        while l <= r:
            s = l + r
            if s == 2 * root:
                count += freq[l] * freq[r] if l != r else freq[l] * (freq[l] - 1) // 2
                l += 1
                r -= 1
            elif s < 2 * root:
                l += 1
            else:
                r -= 1

    return count
All placements help available

Kindly DM
@mrtrueliving_ix

Pre-booking slots are open
😇
Accenture On-campus placement {20 || 12.30}


All MCQ & Coding are done 💯

Round 1& 2 cleared 💯

DM
@mrtrueliving_ix

@mrtrueliving_ix 🚀


Genuine help provider 😇


All OA help available
👍1
Accenture Off campus placement {20 || 7 pm}

All Rounds are done 😇

Test accomplished ❤️🤗

All placement help available

@mrtrueliving_ix

@mrtrueliving_ix
🔥1
Wipro slots are open 👐

DM @mrtrueliving_ix 🤗

Preview:

https://t.me/code_alphix/2143


Test Clearance 💯🙂
Optum Codes

Practicing Problems
The Library Problem
Fruit Weight Combinations
Minimum Distance to Reach Office

DM @mrtrueliving_ix
Honeywell ON campus placement

All Codes are done

DM
@mrtrueliving_ix

All placement help available
 import math
from collections import defaultdict, deque

def connectedSum(graph_nodes, graph_from, graph_to):
graph = defaultdict(list)
for u, v in zip(graph_from, graph_to):
graph[u].append(v)
graph[v].append(u)

visited = set()

def bfs(node):
queue = deque([node])
visited.add(node)
component_size = 0
while queue:
current = queue.popleft()
component_size += 1
for neighbor in graph[current]:
if neighbor not in visited:
visited.add(neighbor)
queue.append(neighbor)
return component_size

total_sum = 0
for node in range(1, graph_nodes + 1):
if node not in visited:
component_size = bfs(node)
total_sum += math.ceil(math.sqrt(component_size))

return total_sum
connected sum // honeywell
👌2
def maxTickets(tickets):
tickets.sort()
max_len = 1
curr_len = 1
for i in range(1, len(tickets)):
if abs(tickets[i] - tickets[i - 1]) <= 1:
curr_len += 1
else:
max_len = max(max_len, curr_len)
curr_len = 1
return max(max_len, curr_len)

Picking tickets// Honeywell
1