diff --git a/.idea/dailycodebase.iml b/.idea/dailycodebase.iml
new file mode 100644
index 00000000..18ec59dd
--- /dev/null
+++ b/.idea/dailycodebase.iml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 00000000..7f431fee
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 00000000..889411ff
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
new file mode 100644
index 00000000..bd87e1d7
--- /dev/null
+++ b/.idea/workspace.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1622078137152
+
+
+ 1622078137152
+
+
+
+
\ No newline at end of file
diff --git a/day35/Java/QuickSort.java b/day35/Java/QuickSort.java
new file mode 100644
index 00000000..80c779a0
--- /dev/null
+++ b/day35/Java/QuickSort.java
@@ -0,0 +1,68 @@
+/**
+ * @date 21/5/21
+ * @author shaybrow
+ */
+
+import java.util.*;
+import static org.junit.Assert.*;
+import org.junit.Test;
+
+public class QuickSort {
+ public static void main(String []args)
+ {
+ Scanner sc=new Scanner(System.in);
+ int n=sc.nextInt();
+ int arr[] = new int[n];
+ for(int i=0;i