Forwarded from PROGRAMMING VIP
Forwarded from PROGRAMMING VIP
❤2
for A2 members #code_challenge Median of Two Sorted list: Given two sorted lists nums1 and nums2, find the median of the entire sorted array.
for A2 def sum_squares(n)
sum = 0
for i in range(1, n + 1):
sum = i * i
return sum , what are the errors of the above code and what is the purpose
sum = 0
for i in range(1, n + 1):
sum = i * i
return sum , what are the errors of the above code and what is the purpose