Dcoder icon

Power Number @ Dcoder

By Lochard | As a newbie programmer | 15 Aug 2023


Problem: A Power Number is a positive number that can be expressed as x^x, i.e. x raise to the power of x, where x is any positive number. You will be given an integer array A and you need to print if the elements of array A are Power Numbers or not.

Input: First line contains N, a positive integer.

Next line contain N space-separated integers.

Output: For every integer, print 'Yes' if its a power number, else print 'No'. These outputs must be separated by space.

Constraints: 1 ≤ N ≤ 100

1 ≤ A[i] ≤ 10^16

Sample Input: 3

1 3 4

Sample Output: 

Yes No Yes

def count_positives_sum_negatives( arr ):
    return [] if arr is None or arr == [] else [ len( [ i for i in arr if i > 0 ] ), sum( i for i in arr if i < 0 ) ]

How do you rate this article?

1


Lochard
Lochard

20240228 Arrived in the UK for about 2 week. All my fears persist. Some are even getting worse. https://github.com/locharp/asylum_diary/


As a newbie programmer
As a newbie programmer

Sharing entry level codes. My snippets on GitHub https://github.com/locharp/code-snippets

Send a $0.01 microtip in crypto to the author, and earn yourself as you read!

20% to author / 80% to me.
We pay the tips from our rewards pool.