From 4486619f8781026f007447881fe3c44dc1827bcb Mon Sep 17 00:00:00 2001
From: Kusum P Grandhi <khush.grandhi@gmail.com>
Date: Fri, 11 Oct 2019 21:50:38 +0530
Subject: [PATCH] add question6

---
 Challenge questions/Readme.md | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/Challenge questions/Readme.md b/Challenge questions/Readme.md
index 8722511..e125d40 100644
--- a/Challenge questions/Readme.md	
+++ b/Challenge questions/Readme.md	
@@ -38,4 +38,14 @@ Reading from a CSV file and printing all colums as rows.
 ### Challenge 5
 Given Strings of code equations like, `"45 >= 67 56==70 30 <= 78"` and output should be binary `"0 0 1"` { input is seprated with space and output should be on new line}
 ### Challenge 6
+WAP that inputs the length and breadth of a sheet, this sheet should be made of a diamond design with '~' and the rest of the corners should be filled with '#'
+eg- size=7X7
+    ###~###
+    ##~~~##
+    #~~~~~#
+    ~~~~~~~
+    #~~~~~#
+    ##~~~##
+    ###~###
+    
 ***Challenge Awaits***