Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Cisco hiring for Software Engineer
Batch Eligible : 2024 passouts only
Location : Bangalore, India
Expected CTC : Around 24 LPA
Apply Link : https://jobs.cisco.com/jobs/ProjectDetail/Software-Engineer-Test-Full-Time-India-Engineering-UHR/1403775
Join Telegram : https://t.me/code_alphix
Batch Eligible : 2024 passouts only
Location : Bangalore, India
Expected CTC : Around 24 LPA
Apply Link : https://jobs.cisco.com/jobs/ProjectDetail/Software-Engineer-Test-Full-Time-India-Engineering-UHR/1403775
Join Telegram : https://t.me/code_alphix
Accenture successfully cleared ▶️ { 2pm}
Slot -1
#Accenture🎯 #Round1&2 #shortlisted
All placement help available
-@mrtrueliving_ix👍
-@mrtrueliving_ix👍
Slot -1
#Accenture🎯 #Round1&2 #shortlisted
All placement help available
-@mrtrueliving_ix
-@mrtrueliving_ix
Last call for Accenture -7 pm slots
Please open Telegram to view this post
VIEW IN TELEGRAM
Accenture successfully cleared ▶️ { 2pm}
🤍 🤍 🤍 🤍 -2️⃣
#Accenture🎯 #Round1&2 #shortlisted
All placement help available
-@mrtrueliving_ix👍
-@mrtrueliving_ix👍
#Congratulations 👏 😊
#Accenture🎯 #Round1&2 #shortlisted
All placement help available
-@mrtrueliving_ix
-@mrtrueliving_ix
#Congratulations 👏 😊
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Accenture coding help done ☄️
Pic sharing🔥
Both codes are done▶️
All placement help available
-@mrtrueliving_ix🔥
Pic sharing
Both codes are done
All placement help available
-@mrtrueliving_ix
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Your legacy lives on in our hearts
Rest in peace, Power Star
#PuneethRajkumar #Appu #PowerStar #KannadaCinema #Legend #RIP
Please open Telegram to view this post
VIEW IN TELEGRAM
❤3🫡3
#include <iostream>
#include <vector>
using namespace std;
int min_revisions(int N, vector<pair<int, int>>& teams) {
int revisions = 0;
for (int i = N - 1; i >= 0; i--) {
int A = teams[i].first;
int B = teams[i].second;
int remainder = (A + revisions) % B;
if (remainder != 0) {
int increment_needed = B - remainder;
revisions += increment_needed;
}
}
return revisions;
}
int main() {
int N;
cin >> N;
vector<pair<int, int>> teams(N);
for (int i = 0; i < N; i++) {
cin >> teams[i].first >> teams[i].second;
}
cout << min_revisions(N, teams) << endl;
return 0;
}
Zupee // equal division ➗
Please open Telegram to view this post
VIEW IN TELEGRAM
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
class Solution {
public:
int largestUseableLandArea(vector<vector<char>>& matrix) {
if (matrix.empty()) return 0;
int M = matrix.size();
int N = matrix[0].size();
vector<vector<bool>> visited(M, vector<bool>(N, false));
int maxArea = 0;
vector<pair<int, int>> directions = {{1, 0}, {-1, 0}, {0, 1}, {0, -1}};
function<int(int, int)> dfs = [&](int x, int y) {
if (x < 0 || x >= M || y < 0 || y >= N || matrix[x][y] == '1' || visited[x][y])
return 0;
visited[x][y] = true;
int area = 1;
for (const auto& dir : directions) {
area += dfs(x + dir.first, y + dir.second);
}
return area;
};
for (int i = 0; i < M; ++i) {
for (int j = 0; j < N; ++j) {
if (matrix[i][j] == '0' && !visited[i][j]) {
maxArea = max(maxArea, dfs(i, j));
}
}
}
return maxArea;
}
};
int main() {
int M, N;
cin >> M >> N;
vector<vector<char>> matrix(M, vector<char>(N));
for (int i = 0; i < M; ++i) {
for (int j = 0; j < N; ++j) {
cin >> matrix[i][j];
}
}
Solution sol;
int result = sol.largestUseableLandArea(matrix);
cout << result << endl;
return 0;
}
Zupee // encode
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Congizant Technical round complete 📱 👍
Slot -1👍
All Coding & SQL & js👍
DM @mrtrueliving_ix ❤️
All placement help available
@mrtrueliving_ix👍
#Cognizant #technical #Successfully
Slot -1
All Coding & SQL & js
DM @mrtrueliving_ix ❤️
All placement help available
@mrtrueliving_ix
#Cognizant #technical #Successfully
Please open Telegram to view this post
VIEW IN TELEGRAM