Given a number N, verify if N is prime or not.
Return 1 if N is prime, else return 0.
Example :
Input : 7
Output : True
Problem Approach:
VIDEO : https://www.youtube.com/watch?v=7VPA-HjjUmU
Complete code in the hint.
NOTE: You only need to implement the given function. Do not read input, instead use the arguments to the function. Do not print the output, instead return values as specified. Still have a question? Checkout Sample Codes for more details.