Job a thon 18?
Drop likeπ or comment below if ur going to attempt the challenge π
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
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β
π€© 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 π
π₯³π₯³
Contact π
@ILOVEU_143
Message him and take help π
π2
Forwarded from Off Campus Updates | AMAZON | IBM | TCS | WIPRO | WILEY EDGE | VIRTUSA | MINDTREE | COGNIZANT
https://practice.geeksforgeeks.org/contest/job-a-thon-18-hiring-challenge
Everyone register this 18 company hiring through this
Everyone register this 18 company hiring through this
practice.geeksforgeeks.org
Contest | Job-A-Thon 18 - Hiring Challenge
Check out the Live Post Analysis of the Contest: Here
21st March, 10:30 PM
Mentor: Suniti
21st March, 10:30 PM
Mentor: Suniti
π1
Forwarded from Off Campus Updates | AMAZON | IBM | TCS | WIPRO | WILEY EDGE | VIRTUSA | MINDTREE | COGNIZANT
Apply link :- ππhttps://indiacampus.accenture.com/myzone/accenture/1/jobs/2211/job-details
telegram @offcampus_000β€οΈ
telegram @offcampus_000β€οΈ
π1
WILEY EDGE β
or any exam help available π₯π―
Book your slot
Contact here @ILOVEU_143β€οΈ
100% clearance guarantee π₯π₯
or any exam help available π₯π―
Book your slot
Contact here @ILOVEU_143β€οΈ
100% clearance guarantee π₯π₯
π1
Forwarded from Coding | EXAMS | IBM ACCENTURE | VIRTUSA | IBM | AMAZON | TCS | EPAM | WILEY EDGE | TECH MAHINDRA | JPMORGAN | HCL | WIPRO
Job a thon 18?
Drop likeπ or comment below if ur going to attempt the challenge π
Drop likeπ or comment below if ur going to attempt the challenge π
π7
Guys pls share Our channel on WhatsApp Groups π
--> @Coding_000β€οΈ
--> https://t.me/Coding_000β
We can clear any type of examβ
--> @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β€οΈβ
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
Share for more ans...fast
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β€οΈ
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
Coding | EXAMS | IBM ACCENTURE | VIRTUSA | IBM | AMAZON | TCS | EPAM | WILEY EDGE | TECH MAHINDRA | JPMORGAN | HCL | WIPRO
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β¦
π1π₯1