From 1f06b1c805967d28348c00a57218ad9d27ebbf8a Mon Sep 17 00:00:00 2001 From: Deven <63876261+devenperez@users.noreply.github.com> Date: Mon, 19 Sep 2022 13:53:42 -0400 Subject: [PATCH] Create README - LeetHub --- 2235-add-two-integers/README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 2235-add-two-integers/README.md diff --git a/2235-add-two-integers/README.md b/2235-add-two-integers/README.md new file mode 100644 index 0000000..21d5ce5 --- /dev/null +++ b/2235-add-two-integers/README.md @@ -0,0 +1,23 @@ +

2235. Add Two Integers

Easy


Given two integers num1 and num2, return the sum of the two integers. +

 

+

Example 1:

+ +
Input: num1 = 12, num2 = 5
+Output: 17
+Explanation: num1 is 12, num2 is 5, and their sum is 12 + 5 = 17, so 17 is returned.
+
+ +

Example 2:

+ +
Input: num1 = -10, num2 = 4
+Output: -6
+Explanation: num1 + num2 = -6, so -6 is returned.
+
+ +

 

+

Constraints:

+ + +
\ No newline at end of file