Leetcode with dani – Telegram
Leetcode with dani
1.31K subscribers
197 photos
14 videos
56 files
240 links
Join us and let's tackle leet code questions together: improve your problem-solving skills
Preparing for coding interviews
learning new algorithms and data structures
connect with other coding enthusiasts
Download Telegram
python for A2 members
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.
num1 = 10
num2 = 5
print(num1 + num2) for A1
Anonymous Quiz
18%
105
78%
15
4%
510
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
def add(a, b):
return a + b
x = 5 y = 3 result = add(x, y) print(result) What is the output of the code?
Anonymous Quiz
2%
5
12%
53
8%
35
78%
8