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
🚀 All Placement Help Available! đŸ’¯


đŸŽ¯ Wipro Elite
đŸŽ¯ Flipkart Grid
đŸŽ¯ Capgemini
đŸŽ¯ Zeta
đŸŽ¯ Kairos
đŸŽ¯ Infosys SP
đŸŽ¯ Goldman Sachs (GS)
đŸŽ¯ Oracle

🧠 Plag-Free Codes | đŸ’ŧ Role-Based Guidance | ✅ High Success Rate

📩 DM
@Mrtrueliving_ix to get started now
❤1
Wipro Elite 9 Am help available....


DM
@Mrtrueliving_ix âœ”ī¸âœ…

Full process up to onboarding

OA + communication + interview + milestone


Limited slots are available 🎉
Please open Telegram to view this post
VIEW IN TELEGRAM
đŸĢĄ1
Wipro 9 Am all codes Available....🎉😍

@Mrtrueliving_ix â¤ī¸
Please open Telegram to view this post
VIEW IN TELEGRAM
Wipro 9 Am Help done âœ”ī¸đŸŽ‰âœ…


DM
@Mrtrueliving_ix for test clearance 🎉

Test accomplished â¤ī¸

#Wipro #Offcampus #2025Batch

All sections are Done
✅
Please open Telegram to view this post
VIEW IN TELEGRAM
Wipro 12pm Help done âœ”ī¸đŸŽ‰âœ…


DM
@Mrtrueliving_ix for test clearance 🎉

Test accomplished â¤ī¸

#Wipro #Offcampus #2025Batch

All sections are Done
✅
Please open Telegram to view this post
VIEW IN TELEGRAM
Q: How many problems did you solve today?
{ Infosys Sp}
Anonymous Poll
20%
3
38%
1-2
42%
0-1
❤2
Flipkart grid 6 Pm Slots are available âœ”ī¸

DM @Mrtrueliving_ix ✅🎉
Please open Telegram to view this post
VIEW IN TELEGRAM
Epam Slots Are Available.....✅


DM
@Mrtrueliving_ix...

Test Clearance Guarantee
đŸ’¯đŸŽ‰
Please open Telegram to view this post
VIEW IN TELEGRAM
JUSPAY - Part A Help.... Available đŸŽ¯


DM for Help...

@Mrtrueliving_ix

@Missalgo
Please open Telegram to view this post
VIEW IN TELEGRAM
All Drive placement Help Available.✅

Contact for Test Clearance
đŸĒĢ

DM
@missalgo😈

Plagfree | Authentic Coding | đŸ’¯ test
â­ī¸
Please open Telegram to view this post
VIEW IN TELEGRAM
❤1
Amazon SDE Help done âœ”ī¸

DM
@Missalgo ✅

#Amazon #SDE #Offcampus #2025Batch
Please open Telegram to view this post
VIEW IN TELEGRAM
Successfully Cleared PWC CTDP ....


Test accomplished â¤ī¸
đŸ’ģ

DM
@Missalgo @Mrtrueliving_ix ✅✅

Shortlist for next round â¤ī¸

#PWC #Offcampus #2025Batch

Prev proof âœ”ī¸

https://t.me/code_alphix/6997
Please open Telegram to view this post
VIEW IN TELEGRAM
❤2🎉1
Amazon SDE Help done âœ”ī¸

Test accomplished â¤ī¸ || pics sharing ✅

DM
@Missalgo ✅

#Amazon #SDE #Offcampus #2025Batch
Please open Telegram to view this post
VIEW IN TELEGRAM
Uber ONCAMPUS { 2027 Batch}

Codes Are Available...
🎉✅

DM
@missalgo @Mrtrueliving_ix
Please open Telegram to view this post
VIEW IN TELEGRAM
def count_substrings(n, arr, k):
l, z, o, res = 0, 0, 0, 0
for r in range(n):
if arr[r] == '0':
z += 1
else:
o += 1
while z > k or o > k:
if arr[l] == '0':
z -= 1
else:
o -= 1
l += 1
res += r - l + 1
return res

def main():
n = int(input().strip())
arr = input().strip()
k = int(input().strip())
if k == 0:
print(0)
else:
print(count_substrings(n, arr, k))

if __name__ == "__main__":
main()

Count the Substrings // Jpmc
def maxResourceValue(n, m, grid):
dp = [[0] * m for _ in range(n)]

for i in range(n):
for j in range(m):
if grid[i][j] == -1 or grid[i][j] == -3:
dp[i][j] = 0
elif i == 0 and j == 0:
dp[i][j] = grid[i][j] if grid[i][j] > 0 else 0
else:
top = dp[i - 1][j] if i > 0 else 0
left = dp[i][j - 1] if j > 0 else 0
dp[i][j] = max(top, left) + (grid[i][j] if grid[i][j] > 0 else 0)

return dp[n - 1][m - 1]

def main():
n, m = map(int, input().strip().split())
grid = []
for _ in range(n):
row = list(map(int, input().strip().split()))
grid.append(row)

result = maxResourceValue(n, m, grid)
print(result)

if __name__ == "__main__":
main()

Space explorer // jpmc