We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- All Contests
- HourRank 25
- Constructing a Number
- Discussions
Constructing a Number
Constructing a Number
Sort by
recency
|
33 Discussions
|
Please Login in order to post a comment
python 3
def canConstruct(a):
if name == 'main':
My solution for this code is.
\Answer for this// char* canConstruct(int a_count, int* a) { // Return "Yes" or "No" denoting whether you can construct the required number. static char str1[]="Yes"; static char str2[]="No"; long int s=0,i; for(i=0;i
static String canConstruct(int[] a) { // Return "Yes" or "No" denoting whether you can construct the required number. int len=a.length; int sum=0; for(int a1:a){ for(;a1>0;a1=a1/10) sum=sum+a1%10; } if(sum%3==0) return "Yes"; else return "No"; }