From 003ed946e3f97fdbf4975f16d4aba6da9308ec99 Mon Sep 17 00:00:00 2001 From: ceccs18c62 <60084945+ceccs18c62@users.noreply.github.com> Date: Sun, 24 Oct 2021 07:37:11 +0530 Subject: [PATCH] Update two-sum.c --- c/two-sum.c | 1 + 1 file changed, 1 insertion(+) diff --git a/c/two-sum.c b/c/two-sum.c index ec063d3..f0a998e 100644 --- a/c/two-sum.c +++ b/c/two-sum.c @@ -21,5 +21,6 @@ int *twoSum(int numbers[], int n, int target) { break; } } + #returning the result return result; }