aboutsummaryrefslogtreecommitdiff
path: root/Computer_Science/leetcode/1_two_sum.c
diff options
context:
space:
mode:
authorSteve Lee <me@xiangyangli.com>2017-12-02 06:03:52 +0800
committerSteve Lee <me@xiangyangli.com>2017-12-02 06:03:52 +0800
commitc3cf173d30db6cff2561696a46abfcdef538bf71 (patch)
tree4fc46c542d759a4ec8da3b57afe00ec6323f3ab1 /Computer_Science/leetcode/1_two_sum.c
parentb46c49228497cb440467167bad3123c327bd620f (diff)
download42-c3cf173d30db6cff2561696a46abfcdef538bf71.tar.xz
42-c3cf173d30db6cff2561696a46abfcdef538bf71.zip
category
Diffstat (limited to 'Computer_Science/leetcode/1_two_sum.c')
-rw-r--r--Computer_Science/leetcode/1_two_sum.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/Computer_Science/leetcode/1_two_sum.c b/Computer_Science/leetcode/1_two_sum.c
new file mode 100644
index 0000000..fe29ecc
--- /dev/null
+++ b/Computer_Science/leetcode/1_two_sum.c
@@ -0,0 +1,26 @@
+#include <stdio.h>
+
+int result[2];
+
+int* two_sum(int* nums, int nums_size, int target)
+{
+ int i, j;
+ for(i = 0; i < nums_size; i++)
+ for(j = 0; j < nums_size; j++)
+ if(nums[i] + nums[j] == target) {
+ printf("%d+%d = %d\n", nums[i], nums[j], target);
+ result[0] = i;
+ result[1] = j;
+ return result;
+ }
+
+}
+
+int main()
+{
+ int nums[4] = {2, 7, 11, 15};
+ two_sum(nums, 4, 9);
+ printf("%d, %d\n",result[0], result[1]);
+
+ return 0;
+}