Hello Programmers/Coders, Today we are going to share solutions of Programming problems of HackerRank of Programming Language Python. At Each Problem with Successful submission with all Test Cases Passed, you will get an score or marks. And after solving maximum problems, you will be getting stars. This will highlight your profile to the recruiters.
In this post, you will find the solution for Any or All in Python-HackerRank Problem. We are providing the correct and tested solutions of coding problems present on HackerRank. If you are not able to solve any problem, then you can take help from our Blog/website.
Use “Ctrl+F” To Find Any Questions Answer. & For Mobile User, You Just Need To Click On Three dots In Your Browser & You Will Get A “Find” Option There. Use These Option to Get Any Random Questions Answer.
Introduction To Python
Python is a widely-used, interpreted, object-oriented, and high-level programming language with dynamic semantics, used for general-purpose programming. It was created by Guido van Rossum, and first released on February 20, 1991.
Python is a computer programming language often used to build websites and software, automate tasks, and conduct data analysis. It is also used to create various machine learning algorithm, and helps in Artificial Intelligence. Python is a general purpose language, meaning it can be used to create a variety of different programs and isn’t specialized for any specific problems. This versatility, along with its beginner-friendliness, has made it one of the most-used programming languages today. A survey conducted by industry analyst firm RedMonk found that it was the most popular programming language among developers in 2020.
Link for the Problem – Any or All in python – HackerRank Solution
Any or All in python – HackerRank Solution
Problem:
any()
This expression returns True if any element of the iterable is true.
If the iterable is empty, it will return False.
Code :
>>> any([1>0,1==0,1<0]) True >>> any([1<0,2<1,3<2]) False
all()
This expression returns True if all of the elements of the iterable are true. If the iterable is empty, it will return True.
Code :
>>> all(['a'<'b','b'<'c']) True >>> all(['a'<'b','c'<'b']) False
Task :
You are given a space separated list of integers. If all the integers are positive, then you need to check if any integer is a palindromic integer.
Input Format :
The first line contains an integer N. N is the total number of integers in the list.
The second line contains the space separated list of N integers.
Constraints :
- 0 < N < 100
Output Format :
Print True if all the conditions of the problem statement are satisfied. Otherwise, print False.
Sample Input :
5 12 9 61 5 14
Sample Output :
True
Explanation :
Condition 1: All the integers in the list are positive.
Condition 2: 5 is a palindromic integer.
Hence, the output is True.
Can you solve this challenge in 3 lines of code or less?
There is no penalty for solutions that are correct but have more than 3 lines.
Any or All in python – HackerRank Solution
def isPositive(i): if i > 0: return True return False def isPalindrome(i): if int(str(i)[::-1]) is i: return True return False N = int(input()) storage = map(int, input().split()) storage = sorted(storage) if all([isPositive(i) for i in storage]): if any([isPalindrome(i) for i in storage]): print("True") else: print("False") else: print("False")