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
- Algorithms
- Warmup
- Solve Me First
- Discussions
Solve Me First
Solve Me First
maiya_o + 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.
brentonstrine + 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.
yash_900209 + 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); } }
tom04alex + 0 comments can any one teach me ? i would like to study python.
melihmucuk + 0 comments line 15 should be for Go:
fmt.Scanf("%v\n %v\n", &a,&b)
Load more conversations
Sort 637 Discussions, By:
Please Login in order to post a comment