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
encrypted_message = "park4 meet1 the3 Let's0 at2"

words = encrypted_message.split()
decrypted_words = [''] * len(words)

for word in words:
    position = int(word[-1])
    decrypted_words[position] = word[:-1]

decrypted_message = ' '.join(decrypted_words)
print(decrypted_message)
πŸ‘4
Job a thon 18?

Drop likeπŸ‘ or comment below if ur going to attempt the challenge πŸ‘‡
πŸ‘4
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
πŸ‘1
Those who want to clearπŸ’―βœ…

     🀩 LTI MindTree Internal Exam
     🀩 Willy Edge
     🀩 Offcampus or Oncampus exams

Contact @ILOVEU_143πŸ‘¨β€πŸ’»

πŸ’―Clearance and genuine helpβœ…

Check all previous proofs πŸ˜ŽπŸ’―

Note: it's paid helpβœ…
πŸ‘1
Another Proof of Clearance of Wiley edge exam
πŸ₯³πŸ₯³

Contact πŸ‘‡

@ILOVEU_143

Message him and take help πŸ‘†
πŸ‘2
WILEY EDGE βœ…
or any exam help available πŸ”₯πŸ’―

Book your slot

Contact here
@ILOVEU_143❀️

100% clearance guarantee πŸ”₯πŸ”₯
πŸ‘1
Guys pls share Our channel on WhatsApp Groups 😊

--> @Coding_000❀️
-
-> https://t.me/Coding_000βœ…

We can clear any type of examβœ…
❀1πŸ’―1
select maximum number codeβœ…

class Solution {
  public:
    vector<int> findDifferenceArray(int n, vector<int> &A) {
        vector<int>prefix(n, 0) , backword(n, 0);
        for(int i=0;i<n;i++){
            prefix[i] = min((i?prefix[i-1]:INT_MAX) , A[i]);
        } @Coding_000
        for(int i=n-1;i>=0;i--){
            backword[i] = min(((i+1<n)?backword[i+1]:INT_MAX) , A[i]);
        }
       
        if(n==1){
            return {0};
        }
        @Coding_000
        vector<int>answer(n, 0);
        for(int i=0;i<n;i++){
            if(i==0){
                answer[i] = -backword[i+1];
                continue;
            }
           
            if(i==n-1){
                answer[i] = prefix[i-1];
                continue;
            }
           
            answer[i] = prefix[i-1] - backword[i+1];
        }
        return answer;
    }
};

telegram @Coding_000β€οΈβœ…
πŸ‘1πŸ”₯1
fest and poster code done  βœ…

class Solution {
  public:
  @Coding_000
  bool check(int valmed, int num, vector<int> &watch){
      int counting = 0;
      for(auto x : watch) counting += (x / valmed);
      return counting >= num;
  } @Coding_000
    long long minimumTime(int N, int num, vector<int> &watch) {
        long long l = 1, r = 1e18, ans = 1e18; @Coding_000
        while(l <= r){
            long long valmed = (l + r) >> 1;
            if(check(valmed, num, watch)) {
                ans = valmed;
                l = valmed - 1;
            }
            else r = valmed + 1;
        }
        return ans;
       
    }
};

code in c++  βœ…
share @Coding_000❀️
πŸ‘1