Solve Me First

Sort by

recency

|

1019 Discussions

|

  • + 0 comments

    Very Hard question.

  • + 0 comments

    the hack back in browes volft voolim

  • + 1 comment

    This is just wierd, I'm new to hackerrank and have no idea whuy it is so difficult and hard to understand how to solve such a simple problem using Typescript. Why do we need to alter the main function??

  • + 0 comments

    "Thank you for this simple yet engaging problem! It’s a great way to get started with problem-solving and build confidence in coding. 11xplay new id

  • + 0 comments

    Here is my c++ solution : https://youtu.be/55kgGHzTTzo

    #include <iostream>
    using namespace std;
    
    int solveMeFirst(int a, int b) {
      return a + b;
    }
    
    int main() {
      int num1, num2;
      int sum;
      cin>>num1>>num2;
      sum = solveMeFirst(num1,num2);
      cout<<sum;
      return 0;
    }