30-Days-Of-Code icon indicating copy to clipboard operation
30-Days-Of-Code copied to clipboard

leetcode beginner level problems

Open avyayjain opened this issue 1 year ago • 4 comments

avyayjain avatar Oct 01 '22 10:10 avyayjain

i can help beginner to solve leetcode problem

avyayjain avatar Oct 01 '22 10:10 avyayjain

@avyayjain do you want to contribute any good problem?

dheeraj-2000 avatar Oct 05 '22 14:10 dheeraj-2000

@avyayjain plz assign this to me

Shreya111111 avatar Oct 20 '22 02:10 Shreya111111

I HAVE SOLVED DAY 21. IN PYTHON def print_array(arr): for element in arr: print(element)

if name == "main": n = int(input().strip())

int_vector = [int(input().strip()) for _ in range(n)]

n = int(input().strip())
string_vector = [input().strip() for _ in range(n)]

print_array(int_vector)
print_array(string_vector)

NGswati avatar Feb 03 '24 06:02 NGswati