Given a string consisting of lowercase alphabets, write a function that returns 'yes' if the string contains all lowercase letters at least once. The solution should have O(N) time complexity and use no extra space.

AnswerBot
2y
Function to check if a string has all lowercase letters appearing at least once without extra space in O(N) time.
Create a boolean array of size 26 to keep track of the occurrence of each letter.
Iterat...read more
Abirami
1y
0 vote
Jyoti Singh
1y
#Code to check whether the string is in lowercase or not. x=input("Enter a string: ") flag= False for i in x: if i.islower(): flag=True else: break if flag==True: print("Yes, the string is in lowercas...read more
Add answer anonymously...
Carwale SDE (Software Development Engineer) interview questions & answers
A SDE (Software Development Engineer) was asked Q. Implement a max() function that returns the maximum of all elements in the stack...read more
A SDE (Software Development Engineer) was asked Q. What are stacks and their properties?
A SDE (Software Development Engineer) was asked Q. Calculate the sum of only the even numbers in the Fibonacci series.
Popular interview questions of SDE (Software Development Engineer)
A SDE (Software Development Engineer) was asked Q1. Implement a max() function that returns the maximum of all elements in the stack...read more
A SDE (Software Development Engineer) was asked Q2. What are stacks and their properties?
A SDE (Software Development Engineer) was asked Q3. Calculate the sum of only the even numbers in the Fibonacci series.
>
Carwale SDE (Software Development Engineer) Interview Questions
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

