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.
  • Hackerrank Home
  • Prepare
    NEW
  • Certify
  • Compete
  • Career Fair
  • Hiring developers?
  1. All Contests
  2. HourRank 25
  3. Constructing a Number
  4. Discussions

Constructing a Number

Problem
Submissions
Leaderboard
Discussions
Editorial

    You are viewing a single comment's thread. Return to all comments →

  • gourav1998chotu
    4 months ago+ 0 comments

    My solution for this code is.

    public static String canConstruct(List<Integer> a) {
        // Return "Yes" or "No" denoting whether you can construct the required number.
           int sum=0;
            int[] arr=a.stream().mapToInt(Integer::intValue).toArray();
    
            for(int l:arr){
                sum+=l;
            }
            if(sum%3==0)
                return "Yes";
            }
    
       return "No";
             }
    
    0|
    Permalink
  • Blog
  • Scoring
  • Environment
  • FAQ
  • About Us
  • Support
  • Careers
  • Terms Of Service
  • Privacy Policy
  • Request a Feature