एक खाली सूची दी। हमारा काम मौसम की जांच करना है कि यह सूची खाली है या नहीं। यहाँ हम जाँच करते हैं जाँच का एक निहित तरीका है।
एल्गोरिदम
Step 1: We take an empty list. Step 2: then check if list is empty then return 1 otherwise 0.
उदाहरण कोड
# Python code to check for empty list
def checklist(A):
if not A:
return 1
else:
return 0
# Driver Code
A = []
if checklist(A):
print ("The list is Empty")
else:
print ("The list is not empty")
आउटपुट
The list is Empty