Skip to content

Commit 5d36c81

Browse files
authored
Merge pull request #63 from sir-gon/develop
[Hacker Rank]: Warmup: Solve Me Firs. Documentation added.
2 parents 07726d9 + 0d502f5 commit 5d36c81

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
```text
37+
5
38+
```
39+
40+
## Explanation
41+
42+
```text
43+
2 + 3 = 5
44+
```

0 commit comments

Comments
 (0)