From 0d502f593efcd8570dafaec51f9200fac86f3a2e Mon Sep 17 00:00:00 2001 From: Gonzalo Diaz Date: Mon, 28 Oct 2024 15:36:44 -0300 Subject: [PATCH] [Hacker Rank]: Warmup: Solve Me Firs. Documentation added. --- docs/hackerrank/warmup/solveMeFirst.md | 44 ++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 docs/hackerrank/warmup/solveMeFirst.md 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 +```