Prachi Bajpayee joined the group
Competitive Programming
Hello everyone!🔥🔥
Do you have what it takes to break into the top tech product companies in the world? Find out where you stand among your peers across 500+ colleges in India by attempting the Discovery Challenge, a coding competition for Indian colleges organised by InterviewBit’s new product
–Scaler Academy, India’s first job-driven onl…Read More# Program to determine whether a number N is equal to the sum of its proper positive divisors(excluding the number itself)
# Sample Input
# 3
# 6
# 5
# 28
# Sample Output
# YES
# NO
# YES
n = int(input())
for k in range(n):
a = int(input())
c = []
for j in range(1,a):
if a%j == 0:
c.append(j)…Read More
# Function to check if mid can
# be maximum sub - arrays sum
def check(mid, array, n, K):
count = 0
sum = 0
for i in range(n):# If individual element is greater
# maximum possible sum
if (array[i] > mid):
return False# Increase sum of current sub - array…Read More
- Load More Posts


Competitive Programming
- Public Group
- 5 months, 1 week ago
- 61
Posts
- 20
Members
Group Administrators

Vishal Sharma
@vishalsharma

Ashutosh vashishtha
@ashutoshvashishtha