From eae1f8c4acb10d6bb9a46752305fa2eae43d8d9e Mon Sep 17 00:00:00 2001 From: karishma5821 <145200862+karishma5821@users.noreply.github.com> Date: Thu, 31 Jul 2025 22:18:54 +0530 Subject: [PATCH 1/3] add feedback feature --- pages/editor.html | 121 +++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 120 insertions(+), 1 deletion(-) diff --git a/pages/editor.html b/pages/editor.html index 64f38f5b..16ce7858 100644 --- a/pages/editor.html +++ b/pages/editor.html @@ -173,11 +173,130 @@

Code Editor

} - + + + +
From 56de6757e916f8dc9f4bb131d942d1c6d6601bdc Mon Sep 17 00:00:00 2001 From: chilaka-eswari Date: Mon, 4 Aug 2025 22:34:13 +0530 Subject: [PATCH 2/3] add feedback box --- pages/editor.html | 262 +++++++++++++++++++++++++++++++--------------- 1 file changed, 178 insertions(+), 84 deletions(-) diff --git a/pages/editor.html b/pages/editor.html index 16ce7858..30f3ed37 100644 --- a/pages/editor.html +++ b/pages/editor.html @@ -1,32 +1,47 @@ + Code Editor Layout - + - + +
@@ -121,31 +168,69 @@
CodeClip
- + +
+ + +
- + -
+

Challenge Description

-

Welcome to the coding challenge! Your task is to implement a function that reverses a given string. Consider edge cases such as empty strings or strings with special characters.

+

Welcome to the coding challenge! Your task is to implement a function that reverses a given string. + Consider edge cases such as empty strings or strings with special characters.

Requirements:

    -
  • The function should accept one argument: a string.
  • -
  • It should return the reversed string.
  • -
  • The solution must be efficient (e.g., O(n) time complexity).
  • +
  • The function should accept one + argument: a string.
  • +
  • It should return the reversed string. +
  • +
  • The solution must be efficient (e.g., + O(n) time complexity).

Example:


@@ -173,37 +258,13 @@ 

Code Editor

}
- - -
-
@@ -324,7 +415,9 @@

Output / Test Results

- + - + + \ No newline at end of file From 6efe98d450a6dc61eb8463ac5600279324728aaf Mon Sep 17 00:00:00 2001 From: chilaka-eswari Date: Mon, 4 Aug 2025 22:39:06 +0530 Subject: [PATCH 3/3] add feedback box --- pages/editor.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/editor.html b/pages/editor.html index 30f3ed37..ccbb2daf 100644 --- a/pages/editor.html +++ b/pages/editor.html @@ -249,7 +249,7 @@

Example:

-
+

Code Editor


 function reverseString(str) {