We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 07726d9 + 0d502f5 commit 5d36c81Copy full SHA for 5d36c81
docs/hackerrank/warmup/solveMeFirst.md
@@ -0,0 +1,44 @@
1
+# [Solve Me First](https://www.hackerrank.com/challenges/solve-me-first)
2
+
3
+Difficulty: #easy
4
+Category: #warmup
5
6
+Complete the function solveMeFirst to compute the sum of two integers.
7
8
+## Example
9
10
+$ a = 7 $ \
11
+$ b = 3 $
12
13
+Return 10.
14
15
+## Function Description
16
17
+Complete the solveMeFirst function in the editor below.
18
+solveMeFirst has the following parameters:
19
20
+- int a: the first value
21
+- int b: the second value
22
23
+## Constraints
24
25
+$ 1 \leq a, b \leq 1000 $
26
27
+## Sample Input
28
29
+```text
30
+a = 2
31
+b = 3
32
+```
33
34
+## Sample Output
35
36
37
+5
38
39
40
+## Explanation
41
42
43
+2 + 3 = 5
44
0 commit comments