Coding | EXAMS | IBM ACCENTURE | VIRTUSA | IBM | AMAZON | TCS | EPAM | WILEY EDGE | TECH MAHINDRA | JPMORGAN | HCL | WIPRO
3.36K subscribers
1.13K photos
3 videos
17 files
373 links
Main channel https://t.me/Coding_000
Contact Admin ๐Ÿ‘‰ @ILOVEU_143 for booking your exam slots
Web- https://coding000.github.io/Projects/
๐Ÿ’ฏ% clearance in any placement exams
OffCampus -https://t.me/Offcampus_000
Discussion- https://t.me/exams_discussion
Download Telegram
Accolite code pythonโœ…


Sharing = caring = spreading happiness

Join ๐Ÿ‘‰ @Examhelp_143 โค๏ธ
๐Ÿ‘2๐Ÿฅฐ1
Any one want projects -mini or Major ๐Ÿ˜Š  Unique project๐Ÿ’ฅ๐Ÿ’ฅ
Domain AI/ML
contact -@ILOVEU_143 โค๏ธ

Anyone need help in GRE and TOFEL Exam help ๐Ÿ‘จโ€๐Ÿ’ป๐Ÿ‘จโ€๐Ÿ’ป

SOP , LORโœ๐Ÿ“

Note -paid ๐Ÿค‘

shareโœ… share โœ…@Coding_000
๐Ÿ‘1
Happy rose day guys..๐ŸŒน๐ŸŒน
๐Ÿ‘‰ @ILOVEU_143 ๐Ÿ˜…
โค10๐Ÿ‘1๐Ÿฅฐ1๐Ÿ˜1
Propose day guys..๐Ÿ’๐Ÿ’
๐Ÿ‘‰ @ILOVEU_143 ๐Ÿ˜…
โค1๐Ÿฅฐ1๐Ÿ˜1
Wiley edge
Amazon Sde
AMcat
Deliotee
or any exam help available ๐Ÿ”ฅ๐Ÿ’ฏ

Book your slot

Contact here @ILOVEU_143โœ…
Note: It's Paid ๐Ÿ’ฐ๐Ÿ’ฐ
Shareโœ… @Coding_000๐Ÿ’ฏ๐Ÿ’ฅ

๐Ÿ’ฏ Clearance and genuine help

Check all previous  proofs ๐Ÿ˜Ž๐Ÿ’ฏ
๐Ÿ‘2๐Ÿ”ฅ1๐Ÿฅฐ1
Any one want projects -mini or Major ๐Ÿ˜Š  Unique project๐Ÿ’ฅ๐Ÿ’ฅ
Domain AI/ML
contact -@ILOVEU_143 โค๏ธ

Anyone need help in GRE and TOFEL, GMAT, DUOLINGO Exam help ๐Ÿ‘จโ€๐Ÿ’ป๐Ÿ‘จโ€๐Ÿ’ป

SOP , LORโœ๐Ÿ“

Note -paid ๐Ÿค‘

shareโœ… share โœ…@Coding_000
๐Ÿ‘2
Don`t waste money for accolite..

All ans here @Coding_000
just scroll above...

share with ur frds โœ…๐Ÿ˜
๐Ÿ‘1
Beauty code Accolite pythonโœ…
@Coding_000 โค๏ธ

share to ur friends and whatsapp to help eachother.๐Ÿ˜…๐Ÿ˜
๐Ÿ‘3๐Ÿ‘1
ษขษชแด แด‡ ส€แด‡แด€แด„แด›ษชแดษด ษขแดœสแดขแดข โค๏ธ๐Ÿ˜
โค9
#include<bits/stdc++.h>
using namespace std;

int main(){
int t;
cin>>t;
while(t--){
int n;
cin>>n;
string s;
cin>>s;
unordered_set<char>st;
int flag=0;
for(int i=0; i<n; i++){
if(st.find(s[i])!=st.end()){
flag=1;
break;
}
st.insert(s[i]);
}
if(flag)
cout<<n-2<<endl;
else
cout<<-1<<endl;
}
}

Bi_lindrome solution C++โœ…
@whitehatcodingโค๏ธ
๐Ÿ‘1
#include <bits/stdc++.h>
using namespace std;

void solve(){
    int n;
    cin>>n;
    for(int i=1; i<n; i++)
    cout<<i+1<<" ";
    cout<<1<<endl;
}

int main() {
    int t;
    cin>>t;
    while(t--)
    solve();
return 0;
}

Permutation and Modulus C++โœ…  @whitehatcoding โค๏ธ
๐Ÿ‘2
#include <bits/stdc++.h>
using namespace std;

void solve(){
        int n,turn=1;
     cin>>n;
     vector<int>arr;
     map<int, int>mp;
     int temp;
     for(int i=0; i<n; i++){
         cin>>temp;
         arr.push_back(temp);
     }
     sort(arr.begin(), arr.end());
     reverse(arr.begin(),arr.end());
     for(int i=0; i<n; i++){
       mp[arr[i]]++;
     }
     for(auto it:mp){
         if(it.second%2){
             turn=0;
             break;
         }
     }
     if(turn)
     cout<<"Zenyk"<<endl;
     else
     cout<<"Marichka"<<endl;
}

int main() {
int t;
cin>>t;
while(t--)
solve();
return 0;
}

Take not less C++โœ…
  @whitehatcoding โค๏ธ
๐Ÿ‘1