diff --git a/docs/hackerrank/warmup/solveMeFirst.md b/docs/hackerrank/warmup/solveMeFirst.md new file mode 100644 index 0000000..5c88ee1 --- /dev/null +++ b/docs/hackerrank/warmup/solveMeFirst.md @@ -0,0 +1,44 @@ +# [Solve Me First](https://www.hackerrank.com/challenges/solve-me-first) + +Difficulty: #easy +Category: #warmup + +Complete the function solveMeFirst to compute the sum of two integers. + +## Example + +$ a = 7 $ \ +$ b = 3 $ + +Return 10. + +## Function Description + +Complete the solveMeFirst function in the editor below. +solveMeFirst has the following parameters: + +- int a: the first value +- int b: the second value + +## Constraints + +$ 1 \leq a, b \leq 1000 $ + +## Sample Input + +```text +a = 2 +b = 3 +``` + +## Sample Output + +```text +5 +``` + +## Explanation + +```text +2 + 3 = 5 +```