From d64edd2006519fec17cc4e275511d2a98dc828d6 Mon Sep 17 00:00:00 2001 From: cipherhacker Date: Wed, 12 Jul 2017 19:33:33 +0530 Subject: [PATCH] Update Trapping the rain water.cpp --- C++/Arrays/Trapping the rain water.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/C++/Arrays/Trapping the rain water.cpp b/C++/Arrays/Trapping the rain water.cpp index 07f2fbf8..7e63af56 100644 --- a/C++/Arrays/Trapping the rain water.cpp +++ b/C++/Arrays/Trapping the rain water.cpp @@ -21,5 +21,4 @@ int main(){ int array[] = {1,0,3,4,5,0,5,7,7,8,9,0}; int size = sizeof(array) / sizeof(int); cout << trapped_water(array,size); - return 0; }