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.
  • Practice
  • Certification
  • Compete
  • Career Fair
  • Hiring developers?
  1. Practice
  2. Algorithms
  3. Warmup
  4. Solve Me First
  5. Discussions

Solve Me First

Problem
Submissions
Leaderboard
Discussions
Editorial

Sort 637 Discussions, By:

votes

Please Login in order to post a comment

  • maiya_o 4 years ago+ 0 comments

    Is there anyone who is able to give a tutorial on what this problem is asking for. I find the explanation to be completely confusing and nonsensical. Maybe if you already understand the concepts, it makes sense; but to a new person, it's not explained well.

    58|
    Permalink
  • brentonstrine 6 years ago+ 0 comments

    Is the Javascript version using some sort of framework? I've never seen process.stdin before. Is that Node.js? I'm super confused about what this is doing.

    14|
    Permalink
  • yash_900209 3 years ago+ 0 comments

    Solution in C# :)

    using System;
    using System.Collections.Generic;
    using System.IO;
    class Solution {
        static int solveMeFirst(int a, int b) { 
          int sum=0;
            sum=a+b;
          return sum;
          
        }
        static void Main(String[] args) {
            int val1 = Convert.ToInt32(Console.ReadLine());
            int val2 = Convert.ToInt32(Console.ReadLine());
            int sum = solveMeFirst(val1,val2);
            Console.WriteLine(sum);
        }
    }
    
    6|
    Permalink
  • tom04alex 4 years ago+ 0 comments

    can any one teach me ? i would like to study python.

    3|
    Permalink
  • melihmucuk 5 years ago+ 0 comments

    line 15 should be for Go:

    fmt.Scanf("%v\n %v\n", &a,&b)
    
    2|
    Permalink
Load more conversations

Need Help?


View editorial
View top submissions
  • Contest Calendar
  • Blog
  • Scoring
  • Environment
  • FAQ
  • About Us
  • Support
  • Careers
  • Terms Of Service
  • Privacy Policy
  • Request a Feature