š1š„1
Attention everyone!!
Those who need help for Cognizant, Accenture, Revature or any placement tests clearance should contact @ILOVEU_143šØāš»š and book your slots ā
100% CLEARANCE ā šØāš»
Remote access availableš¤
Telegram: @ILOVEU_143ā
SHARE @coding_000ā šØāš»
Those who need help for Cognizant, Accenture, Revature or any placement tests clearance should contact @ILOVEU_143šØāš»š and book your slots ā
100% CLEARANCE ā šØāš»
Remote access availableš¤
Telegram: @ILOVEU_143ā
SHARE @coding_000ā šØāš»
š2
Who have Infosys exam guys??
Join this group and share our channel i will share all codes ššØāš»
@CODING_000šØāš»š
https://t.me/Coding_000 šØāš»š
https://t.me/Coding_000 šØāš»š
https://t.me/Coding_000 šØāš»š
https://t.me/Coding_000 šØāš»š
Share ā share ā share ā
Join this group and share our channel i will share all codes ššØāš»
@CODING_000šØāš»š
https://t.me/Coding_000 šØāš»š
https://t.me/Coding_000 šØāš»š
https://t.me/Coding_000 šØāš»š
https://t.me/Coding_000 šØāš»š
Share ā share ā share ā
š2
Join this group and share our channel i will share all Infosys codes ššØāš»
@CODING_000šØāš»š
https://t.me/Coding_000 šØāš»š
https://t.me/Coding_000 šØāš»š
https://t.me/Coding_000 šØāš»š
https://t.me/Coding_000 šØāš»š
Share ā share ā share ā
@CODING_000šØāš»š
https://t.me/Coding_000 šØāš»š
https://t.me/Coding_000 šØāš»š
https://t.me/Coding_000 šØāš»š
https://t.me/Coding_000 šØāš»š
Share ā share ā share ā
š3
How many Of u writing Infosys Exam Today ?
Give reactions....ā¤ļø
Based on reactions i will help...ā
Otherwise I will sleep..š“
Share our channel make 4.5k šÆšÆ
Share @coding_000ā¤ļøā
Give reactions....ā¤ļø
Based on reactions i will help...ā
Otherwise I will sleep..š“
Share our channel make 4.5k šÆšÆ
Share @coding_000ā¤ļøā
ā¤9š3
NoBody sharing š¢š
Our channel @Coding_000ā¤ļø
Our channel @Coding_000ā¤ļø
Good Sets
int solve(const string& s) {
vector<int> lc;
for (int i = 0; i < s.size(); ++i) {
if (islower(s[i])) {
lc.push_back(i);
}
}
int m = 0;
int c = 0;
int p = -1;
for (int i : lc) {
if (p == -1 || s.substr(p + 1, i - p).compare(s.substr(p + 1, i - p)) != 0) {
c += 1;
} else {
c = 1;
}
m = max(m, c);
p = i;
}
return m;
}
int solve(const string& s) {
vector<int> lc;
for (int i = 0; i < s.size(); ++i) {
if (islower(s[i])) {
lc.push_back(i);
}
}
int m = 0;
int c = 0;
int p = -1;
for (int i : lc) {
if (p == -1 || s.substr(p + 1, i - p).compare(s.substr(p + 1, i - p)) != 0) {
c += 1;
} else {
c = 1;
}
m = max(m, c);
p = i;
}
return m;
}
š„1
#include <iostream>
#include <unordered_set>
#include <string>
using namespace std;
void generateSubstrings(const string &s, int len, unordered_set<string> &substrings) {
for (int i = 0; i <= s.size() - len; ++i) {
substrings.insert(s.substr(i, len));
}
}
string findMinimalString(const string &s) {
unordered_set<string> substrings;
for (int len = 1; ; ++len) {
substrings.clear();
generateSubstrings(s, len, substrings);
string candidate(len, 'a');
while (true) {
if (substrings.find(candidate) == substrings.end()) {
return candidate;
}
int pos = len - 1;
while (pos >= 0 && candidate[pos] == 'z') {
candidate[pos] = 'a';
--pos;
}
if (pos < 0) break;
++candidate[pos];
}
}
}
int main() {
string S;
cin >> S;
cout << findMinimalString(S) << endl;
return 0;
}.
// Minimal String
Infosys ā
#include <unordered_set>
#include <string>
using namespace std;
void generateSubstrings(const string &s, int len, unordered_set<string> &substrings) {
for (int i = 0; i <= s.size() - len; ++i) {
substrings.insert(s.substr(i, len));
}
}
string findMinimalString(const string &s) {
unordered_set<string> substrings;
for (int len = 1; ; ++len) {
substrings.clear();
generateSubstrings(s, len, substrings);
string candidate(len, 'a');
while (true) {
if (substrings.find(candidate) == substrings.end()) {
return candidate;
}
int pos = len - 1;
while (pos >= 0 && candidate[pos] == 'z') {
candidate[pos] = 'a';
--pos;
}
if (pos < 0) break;
++candidate[pos];
}
}
}
int main() {
string S;
cin >> S;
cout << findMinimalString(S) << endl;
return 0;
}.
// Minimal String
Infosys ā
š3š„1
#include <iostream>
#include <vector>
using namespace std;
vector<bool> sieve(int max_val) {
vector<bool> is_prime(max_val + 1, true);
is_prime[0] = is_prime[1] = false;
for (int i = 2; i * i <= max_val; ++i) {
if (is_prime[i]) {
for (int j = i * i; j <= max_val; j += i) {
is_prime[j] = false;
}
}
}
return is_prime;
}
int main() {
int N;
cin >> N;
vector<int> A(N);
int max_val = 0;
for (int i = 0; i < N; ++i) {
cin >> A[i];
if (A[i] > max_val) {
max_val = A[i];
}
}
vector<bool> is_prime = sieve(max_val);
int prime_count = 0, composite_count = 0;
for (int i = 0; i < N; ++i) {
if (is_prime[A[i]]) {
prime_count++;
} else {
composite_count++;
}
}
int good_pairs = prime_count * composite_count;
cout << good_pairs << endl;
return 0;
}.
find good pairs in array
Infosys ā
#include <vector>
using namespace std;
vector<bool> sieve(int max_val) {
vector<bool> is_prime(max_val + 1, true);
is_prime[0] = is_prime[1] = false;
for (int i = 2; i * i <= max_val; ++i) {
if (is_prime[i]) {
for (int j = i * i; j <= max_val; j += i) {
is_prime[j] = false;
}
}
}
return is_prime;
}
int main() {
int N;
cin >> N;
vector<int> A(N);
int max_val = 0;
for (int i = 0; i < N; ++i) {
cin >> A[i];
if (A[i] > max_val) {
max_val = A[i];
}
}
vector<bool> is_prime = sieve(max_val);
int prime_count = 0, composite_count = 0;
for (int i = 0; i < N; ++i) {
if (is_prime[A[i]]) {
prime_count++;
} else {
composite_count++;
}
}
int good_pairs = prime_count * composite_count;
cout << good_pairs << endl;
return 0;
}.
find good pairs in array
Infosys ā
š1š„1
Swap and delete string
š„1
š1š„1
bool isp(string s){
int n=s.length();
for(int i=0;i<n/2;i++){
if(s[i]!=s[n-i-1]){
return false;
}
}
return true;
}
int longestString(vector<string>v){
unordered_map<string,int>mp;
for(auto x:v){
mp[x]++;
}
int ans=0;
for(auto x:mp){
if(x.second>1){
int k=(x.second)/2;
ans+=k*(x.first.length());
}
if(x.second%2!=0){
mp[x.first]=1;
}
else
mp.erase(x.first);
}
int maxi=0;
for(auto x:mp){
if(isp(x.first)){
maxi=max(maxi,(int)x.first.length());
}
}
return ans+maxi;
}
Max palindrome
Infosys ā
int n=s.length();
for(int i=0;i<n/2;i++){
if(s[i]!=s[n-i-1]){
return false;
}
}
return true;
}
int longestString(vector<string>v){
unordered_map<string,int>mp;
for(auto x:v){
mp[x]++;
}
int ans=0;
for(auto x:mp){
if(x.second>1){
int k=(x.second)/2;
ans+=k*(x.first.length());
}
if(x.second%2!=0){
mp[x.first]=1;
}
else
mp.erase(x.first);
}
int maxi=0;
for(auto x:mp){
if(isp(x.first)){
maxi=max(maxi,(int)x.first.length());
}
}
return ans+maxi;
}
Max palindrome
Infosys ā
š1š„1
#include <iostream>
#include <unordered_set>
#include <string>
using namespace std;
void generateSubstrings(const string &s, int len, unordered_set<string> &substrings) {
for (int i = 0; i <= s.size() - len; ++i) {
substrings.insert(s.substr(i, len));
}
}
string findMinimalString(const string &s) {
unordered_set<string> substrings;
for (int len = 1; ; ++len) {
substrings.clear();
generateSubstrings(s, len, substrings);
string candidate(len, 'a');
while (true) {
if (substrings.find(candidate) == substrings.end()) {
return candidate;
}
int pos = len - 1;
while (pos >= 0 && candidate[pos] == 'z') {
candidate[pos] = 'a';
--pos;
}
if (pos < 0) break;
++candidate[pos];
}
}
}
int main() {
string S;
cin >> S;
cout << findMinimalString(S) << endl;
return 0;
}.
Minimal string ā
All test cases pass šØāš»ā
#include <unordered_set>
#include <string>
using namespace std;
void generateSubstrings(const string &s, int len, unordered_set<string> &substrings) {
for (int i = 0; i <= s.size() - len; ++i) {
substrings.insert(s.substr(i, len));
}
}
string findMinimalString(const string &s) {
unordered_set<string> substrings;
for (int len = 1; ; ++len) {
substrings.clear();
generateSubstrings(s, len, substrings);
string candidate(len, 'a');
while (true) {
if (substrings.find(candidate) == substrings.end()) {
return candidate;
}
int pos = len - 1;
while (pos >= 0 && candidate[pos] == 'z') {
candidate[pos] = 'a';
--pos;
}
if (pos < 0) break;
++candidate[pos];
}
}
}
int main() {
string S;
cin >> S;
cout << findMinimalString(S) << endl;
return 0;
}.
Minimal string ā
All test cases pass šØāš»ā
š1š„1š„°1
Coding | EXAMS | IBM ACCENTURE | VIRTUSA | IBM | AMAZON | TCS | EPAM | WILEY EDGE | TECH MAHINDRA | JPMORGAN | HCL | WIPRO
#include <iostream> #include <unordered_set> #include <string> using namespace std; void generateSubstrings(const string &s, int len, unordered_set<string> &substrings) { for (int i = 0; i <= s.size() - len; ++i) { substrings.insert(s.substr(iā¦
š1š„1š„°1
Give reactions and share our channel to get more solutions
ššā
Share fast our channel and share ur questiona below..šš
https://t.me/exams_discussion
ššā
Share fast our channel and share ur questiona below..šš
https://t.me/exams_discussion
š2
Code Name - cost of string s
int solve(const string& S) {
vector<int> freq(26, 0);
for (char c : S) {
freq[c - 'a']++;
}
int total = 0;
for (int i = 0; i < 26; ++i) {
for (int j = i + 1; j < 26; ++j) {
total += freq[i] * freq[j] * abs(i - j);
}
}
return total;
}
100% Running ā ā ā
Share our channel @coding_000šØāš»š
int solve(const string& S) {
vector<int> freq(26, 0);
for (char c : S) {
freq[c - 'a']++;
}
int total = 0;
for (int i = 0; i < 26; ++i) {
for (int j = i + 1; j < 26; ++j) {
total += freq[i] * freq[j] * abs(i - j);
}
}
return total;
}
100% Running ā ā ā
Share our channel @coding_000šØāš»š
š„2š1