From 6727764c15ad91064b15900aa172ec1a045da13c Mon Sep 17 00:00:00 2001 From: Dhruv-2403 Date: Wed, 20 Nov 2024 15:26:31 +0530 Subject: [PATCH 1/4] index.html --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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. + From 39d5ea526415bf6fd5fe730647563f43ebd45519 Mon Sep 17 00:00:00 2001 From: Dhruv-2403 Date: Wed, 20 Nov 2024 15:32:20 +0530 Subject: [PATCH 2/4] Add files via upload --- style.html | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 style.html 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 From 36ebff212a54e8624a3c596a3bc2d93408b126f8 Mon Sep 17 00:00:00 2001 From: Dhruv-2403 Date: Thu, 21 Nov 2024 00:58:23 +0530 Subject: [PATCH 3/4] THIS FILE IS FOR TESTING --- ok.html | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 ok.html 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 From cec88b9a24484e9fa7fa6dac56ee6509763fd6b2 Mon Sep 17 00:00:00 2001 From: Dhruv-2403 Date: Sun, 26 Jan 2025 16:39:47 +0530 Subject: [PATCH 4/4] Add files via upload --- code1.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 code1.txt 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