diff --git a/README.md b/README.md index e9c594e..8b13789 100644 --- a/README.md +++ b/README.md @@ -1,2 +1 @@ -# practice_section-B -This is a common repo to experiment commit, push, pull etc. + diff --git a/code1.txt b/code1.txt new file mode 100644 index 0000000..03e0310 --- /dev/null +++ b/code1.txt @@ -0,0 +1,14 @@ +class Solution: + def findDuplicates(self, arr): + d={} + for i in arr: + if i not in d: + d[i]=1 + else: + d[i]+=1 + l2=[] + for i,j in d.items(): + if j>1: + l2.append(i) + return l2 + \ No newline at end of file diff --git a/ok.html b/ok.html new file mode 100644 index 0000000..21bf2c3 --- /dev/null +++ b/ok.html @@ -0,0 +1,11 @@ + + + + + + for testing + + + + + \ No newline at end of file diff --git a/style.html b/style.html new file mode 100644 index 0000000..afb7784 --- /dev/null +++ b/style.html @@ -0,0 +1,46 @@ + + + +

+ 2048 game +

+
+

+ Score: 0 +

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+ + +
+ + + + + + + \ No newline at end of file