diff options
| author | Steve Lee <me@xiangyangli.com> | 2017-12-02 06:03:52 +0800 |
|---|---|---|
| committer | Steve Lee <me@xiangyangli.com> | 2017-12-02 06:03:52 +0800 |
| commit | c3cf173d30db6cff2561696a46abfcdef538bf71 (patch) | |
| tree | 4fc46c542d759a4ec8da3b57afe00ec6323f3ab1 /Computer_Science/leetcode | |
| parent | b46c49228497cb440467167bad3123c327bd620f (diff) | |
| download | 42-c3cf173d30db6cff2561696a46abfcdef538bf71.tar.xz 42-c3cf173d30db6cff2561696a46abfcdef538bf71.zip | |
category
Diffstat (limited to 'Computer_Science/leetcode')
| -rw-r--r-- | Computer_Science/leetcode/1_two_sum.c | 26 | ||||
| -rwxr-xr-x | Computer_Science/leetcode/a.out | bin | 0 -> 7104 bytes |
2 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; +} diff --git a/Computer_Science/leetcode/a.out b/Computer_Science/leetcode/a.out Binary files differnew file mode 100755 index 0000000..0aa8167 --- /dev/null +++ b/Computer_Science/leetcode/a.out |
