Guys check now..ππ
All test cases passβ bOTH CODES uploaded.
All test cases passβ bOTH CODES uploaded.
π3
Forwarded from λΆλ―ΈμΉ΄ .12
Executed
π₯3β€1
Guys plagiarism will be checked so please change method order and variable name
Share @Coding_000β€οΈ
Share @Coding_000β€οΈ
π3β€2
Guys check the latest codeππ ..type crtly it pass β
π2
Those who need Job in It Companies can check this channel
Join now @Offcampus_000
π₯π₯
Latest Jobs and Internships Updates for 2021,2022, 2023 and 2024 Batch
Join now @Offcampus_000
π₯π₯
Latest Jobs and Internships Updates for 2021,2022, 2023 and 2024 Batch
π1π₯1
Wiley Edge
Tcs Exam
Axis Bank
Any other campus placement or Offcampus Exam.
Help available in All exams.
Book your slot.π¨βπ»
Contact @ILOVEU_143β
Its paid β
100% clearance guarantee π₯π₯
Share @Coding_000 β€οΈ
Tcs Exam
Axis Bank
Any other campus placement or Offcampus Exam.
Help available in All exams.
Book your slot.π¨βπ»
Contact @ILOVEU_143β
Its paid β
100% clearance guarantee π₯π₯
Share @Coding_000 β€οΈ
π1π₯°1
Forwarded from Coding | EXAMS | IBM ACCENTURE | VIRTUSA | IBM | AMAZON | TCS | EPAM | WILEY EDGE | TECH MAHINDRA | JPMORGAN | HCL | WIPRO
https://drive.google.com/drive/folders/1h_-oalz4GLywyKURcKm6MV57QE7mJIR9?usp=sharing
Download this in Laptop and save it
You can prepare for all exams with this
It has all exams papers,Resume Templates,Notes,Interview Questions etc
Share it with your Friends
Download this in Laptop and save it
You can prepare for all exams with this
It has all exams papers,Resume Templates,Notes,Interview Questions etc
Share it with your Friends
π3
πAWS Certified Cloud Practitioner π
GLOBAL CERTIFICATION
πAzure Fundamentals Certificationβ€οΈ
Solutions / Dumps available β
Contact @ILOVEU_143π¨βπ»
100% clearance guarantee π₯π₯
Share @Coding_000 β€οΈ
GLOBAL CERTIFICATION
πAzure Fundamentals Certificationβ€οΈ
Solutions / Dumps available β
Contact @ILOVEU_143π¨βπ»
100% clearance guarantee π₯π₯
Share @Coding_000 β€οΈ
π1π₯°1
Willey edge exam help available at low rates β€οΈ
Contact:
@ILOVEU_143β
Check my previous helps here @Coding_000β€οΈβ
Contact:
@ILOVEU_143β
Check my previous helps here @Coding_000β€οΈβ
β€1π1
What is the difference between
I like you & I love you
Beautifully answered by Buddha :
When you like a flower, you just pluck it But when you love a flower, you water it daily !
One who understand this, understands life.
@ILOVEU_143 π
I like you & I love you
Beautifully answered by Buddha :
When you like a flower, you just pluck it But when you love a flower, you water it daily !
One who understand this, understands life.
@ILOVEU_143 π
β€10β€βπ₯6
Willey edge exam help available at low rates β€οΈ
Contact:
@ILOVEU_143β
Check my previous helps here @Coding_000β€οΈβ
Contact:
@ILOVEU_143β
Check my previous helps here @Coding_000β€οΈβ
π1
How many of you are having
TCS NQT EXAM Today
Hit Like π Button
For free answersπ
TCS NQT EXAM Today
Hit Like π Button
For free answersπ
π13
https://www.hackerearth.com/challenges/new/competitive/amazon-ml-challenge-2023/
Amazon ML Challenge is a two stage competition where students from all engineering campuses across India will get a unique opportunity to work on Amazonβs dataset to bring in fresh ideas and build innovative solutions for a real world problem statement. Top three winning teams will receive cash prizes and certificates.
Registrations will remain open from 3 April 2023 to 20 April 2023 11:59 PM IST. Participation starts from 21 April 2023 12 AM IST to 23 April 2023 11:59 PM IST.
Amazon ML Challenge is a two stage competition where students from all engineering campuses across India will get a unique opportunity to work on Amazonβs dataset to bring in fresh ideas and build innovative solutions for a real world problem statement. Top three winning teams will receive cash prizes and certificates.
Registrations will remain open from 3 April 2023 to 20 April 2023 11:59 PM IST. Participation starts from 21 April 2023 12 AM IST to 23 April 2023 11:59 PM IST.
HackerEarth
Amazon ML Challenge 2023
Registrations Closed!
About Amazon ML Challenge
Amazon ML Challenge is a two stage competition where students from all engineering campuses across India will get a unique opportunity to work on Amazonβs dataset to bring in fresh ideas and build innovativeβ¦
About Amazon ML Challenge
Amazon ML Challenge is a two stage competition where students from all engineering campuses across India will get a unique opportunity to work on Amazonβs dataset to bring in fresh ideas and build innovativeβ¦
π1
Willey edge exam help available at low rates β€οΈ
Contact:
@ILOVEU_143β
Check my previous helps here @Coding_000β€οΈβ
Contact:
@ILOVEU_143β
Check my previous helps here @Coding_000β€οΈβ
π2
Done with
WILEY EDGE β
or any exam help available π₯π―
Book your slot
Contact here @ILOVEU_143β€οΈ
100% clearance guarantee π₯π₯
WILEY EDGE β
or any exam help available π₯π―
Book your slot
Contact here @ILOVEU_143β€οΈ
100% clearance guarantee π₯π₯
π₯5π₯°1
XOR Subsequences
Python
Trilogy Innovations
def bit_count(x):
cnt = 0
while x > 0:
cnt += x & 1
x >>= 1
return cnt
n = int(input())
a = list(map(int, input().split()))
dp = [set() for i in range(n)]
dp[0].add((a[0],))
ans = 0
for i in range(1, n):
dp[i].add((a[i],))
for b in dp[i-1]:
if a[i] > b[-1]:
b2 = b + (a[i],)
dp[i].add(b2)
if len(b) > 1 and bit_count(b[-2] ^ b[-1]) == bit_count(b[-2] ^ a[i]):
b2 = b[:-1] + (a[i],)
dp[i].add(b2)
for b in dp[i]:
x = b[0]
for j in range(1, len(b)):
x ^= b[j]
ans |= x
print(bin(ans).count('1'))
XOR Subsequences
Python
Trilogy Innovations
Python
Trilogy Innovations
def bit_count(x):
cnt = 0
while x > 0:
cnt += x & 1
x >>= 1
return cnt
n = int(input())
a = list(map(int, input().split()))
dp = [set() for i in range(n)]
dp[0].add((a[0],))
ans = 0
for i in range(1, n):
dp[i].add((a[i],))
for b in dp[i-1]:
if a[i] > b[-1]:
b2 = b + (a[i],)
dp[i].add(b2)
if len(b) > 1 and bit_count(b[-2] ^ b[-1]) == bit_count(b[-2] ^ a[i]):
b2 = b[:-1] + (a[i],)
dp[i].add(b2)
for b in dp[i]:
x = b[0]
for j in range(1, len(b)):
x ^= b[j]
ans |= x
print(bin(ans).count('1'))
XOR Subsequences
Python
Trilogy Innovations
π5β€1
Good Arrays Code
C++
Trilogy Innovations
int n = arr.size();
int A = arr[0];
int B = arr[n-1];
int k = 0;
for (int i = 1; i < n-1; i++) {
if (arr[i] > A) {
k++;
}
}
long long ways = 1;
for (int i = 1; i <= k; i++) {
ways = (ways * i) % 1000000007;
}
return ways;
Good Arrays Code
C++
Trilogy Innovations
C++
Trilogy Innovations
int n = arr.size();
int A = arr[0];
int B = arr[n-1];
int k = 0;
for (int i = 1; i < n-1; i++) {
if (arr[i] > A) {
k++;
}
}
long long ways = 1;
for (int i = 1; i <= k; i++) {
ways = (ways * i) % 1000000007;
}
return ways;
Good Arrays Code
C++
Trilogy Innovations
π3β€2π1
α΄‘α΄ α΄
α΄Ι΄'α΄ Ι΄α΄α΄α΄
α΄Ι΄Κ α΄α΄Κα΄Κ α΄ΚΙͺΙ΄Ι’s α΄α΄sα΄ Κα΄α΄α΄α΄ α΄Ι΄ α΄α΄sα΄s α΄Ι΄α΄
α΄α΄α΄α΄ α΄s Κα΄α΄α΄Κ β€οΈπ€©
Share @Coding_000β€οΈ
Share @Coding_000β€οΈ
π2