From 7e452a4351d2000a713b2971cdd534051bd45949 Mon Sep 17 00:00:00 2001 From: wasaif89 Date: Tue, 8 Mar 2022 16:36:41 +0300 Subject: [PATCH] =?UTF-8?q?=D8=A7=D9=84=D8=AD=D9=84=20=D9=86=D9=87=D8=A7?= =?UTF-8?q?=D9=8A=D9=87=20=D8=A7=D9=84=D8=B1=D9=8A=D8=AF=20=D9=85=D9=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index debb56b..01e7523 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,19 @@ Create a function that receives a string that contains combination of parenthese | [{}] | true | | {[(}]) | true | | {[}]) | false | +//-------------------------- +// 1 + +func array (arr:[Int]) -> Int { + var arr1 = [2,4,6,4,9,6,2] + for i in arr1 { + if i != i { + print(i) + } + } + return 1 +} +