From 33fd13809a68291f7054c0eaedc89cfa62c1e1af Mon Sep 17 00:00:00 2001 From: neeraja00 Date: Wed, 29 Apr 2026 22:47:23 +0530 Subject: [PATCH 1/9] Added PositiveNegative solution --- PositiveNegative.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 PositiveNegative.java diff --git a/PositiveNegative.java b/PositiveNegative.java new file mode 100644 index 0000000..3a11c53 --- /dev/null +++ b/PositiveNegative.java @@ -0,0 +1,15 @@ +import java.util.Scanner; +public class PositiveNegative { + public static void main (String[] args) { + Scanner sc = new Scanner (System.in); + System.out.println("Enter a number: "); + int num = sc.nextInt(); + if (num > 0) { + System.out.println(num + " is Positive"); + } else if (num < 0) { + System.out.println(num + " is Negative"); + } else { + System.out.println(num + " is Zero"); + } + } +} \ No newline at end of file From 4db9bb19a66584fae4459bdbda96b1ce13f5fb79 Mon Sep 17 00:00:00 2001 From: neeraja00 Date: Fri, 1 May 2026 22:55:01 +0530 Subject: [PATCH 2/9] Added EvenOrOdd.java solution --- EvenOrOdd.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 EvenOrOdd.java diff --git a/EvenOrOdd.java b/EvenOrOdd.java new file mode 100644 index 0000000..ab24033 --- /dev/null +++ b/EvenOrOdd.java @@ -0,0 +1,13 @@ +import java.util.*; +public class EvenOrOdd { + public static void main (String[] args) { + Scanner sc = new Scanner(System.in); + System.out.println("Enter a number: "); + int num = sc.nextInt(); + if(num % 2 == 0) { + System.out.println(num + " is a Even number"); + } else { + System.out.println(num + " is a Odd number"); + } + } +} \ No newline at end of file From 53c0c006277e57ecbeaf50074e06198569c4f358 Mon Sep 17 00:00:00 2001 From: neeraja00 Date: Fri, 1 May 2026 23:00:01 +0530 Subject: [PATCH 3/9] Added Neeraja_EvenOrOdd_q2 solution --- Neeraja_EvenOrOdd_q2.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Neeraja_EvenOrOdd_q2.java diff --git a/Neeraja_EvenOrOdd_q2.java b/Neeraja_EvenOrOdd_q2.java new file mode 100644 index 0000000..3959d53 --- /dev/null +++ b/Neeraja_EvenOrOdd_q2.java @@ -0,0 +1,13 @@ +import java.util.*; +public class Neeraja_EvenOrOdd_q2 { + public static void main (String[] args) { + Scanner sc = new Scanner(System.in); + System.out.println("Enter a number: "); + int num = sc.nextInt(); + if(num % 2 == 0) { + System.out.println(num + " is a Even number"); + } else { + System.out.println(num + " is a Odd number"); + } + } +} \ No newline at end of file From 127160682d1b1c0606445841bd408de90c56e2b5 Mon Sep 17 00:00:00 2001 From: neeraja00 Date: Fri, 1 May 2026 23:02:33 +0530 Subject: [PATCH 4/9] Added Neeraja_EvenOrOdd_q2 solution --- Neeraja_PositiveNegative_q1.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Neeraja_PositiveNegative_q1.java diff --git a/Neeraja_PositiveNegative_q1.java b/Neeraja_PositiveNegative_q1.java new file mode 100644 index 0000000..0221bbf --- /dev/null +++ b/Neeraja_PositiveNegative_q1.java @@ -0,0 +1,15 @@ +import java.util.Scanner; +public class Neeraja_PositiveNegative_q1 { + public static void main (String[] args) { + Scanner sc = new Scanner (System.in); + System.out.println("Enter a number: "); + int num = sc.nextInt(); + if (num > 0) { + System.out.println(num + " is Positive"); + } else if (num < 0) { + System.out.println(num + " is Negative"); + } else { + System.out.println(num + " is Zero"); + } + } +} \ No newline at end of file From 9726bb0519c4a58c38d2842b7869f616249ff9de Mon Sep 17 00:00:00 2001 From: neeraja00 Date: Fri, 1 May 2026 23:05:27 +0530 Subject: [PATCH 5/9] Added Neeraja_PositiveNegative_q1 solution --- EvenOrOdd.java | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 EvenOrOdd.java diff --git a/EvenOrOdd.java b/EvenOrOdd.java deleted file mode 100644 index ab24033..0000000 --- a/EvenOrOdd.java +++ /dev/null @@ -1,13 +0,0 @@ -import java.util.*; -public class EvenOrOdd { - public static void main (String[] args) { - Scanner sc = new Scanner(System.in); - System.out.println("Enter a number: "); - int num = sc.nextInt(); - if(num % 2 == 0) { - System.out.println(num + " is a Even number"); - } else { - System.out.println(num + " is a Odd number"); - } - } -} \ No newline at end of file From 024237e6c58c86fa3717be3091f0747af2327d0e Mon Sep 17 00:00:00 2001 From: neeraja00 Date: Fri, 1 May 2026 23:09:29 +0530 Subject: [PATCH 6/9] Removed PositiveNegative.java --- .vscode/settings.json | 8 ++++++++ EvenOrOdd.class | Bin 0 -> 1135 bytes PositiveNegative.class | Bin 0 -> 1192 bytes PositiveNegative.java | 15 --------------- 4 files changed, 8 insertions(+), 15 deletions(-) create mode 100644 .vscode/settings.json create mode 100644 EvenOrOdd.class create mode 100644 PositiveNegative.class delete mode 100644 PositiveNegative.java diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..f2518c8 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,8 @@ +{ + "editor.quickSuggestions": false, + "editor.suggestOnTriggerCharacters": false, + "editor.inlineSuggest.enabled": false, + "editor.parameterHints.enabled": false, + "editor.wordBasedSuggestions": "off" + +} \ No newline at end of file diff --git a/EvenOrOdd.class b/EvenOrOdd.class new file mode 100644 index 0000000000000000000000000000000000000000..bb11d56fa7af6b749d88fda6310e31db4c1c64c2 GIT binary patch literal 1135 zcmaJ=YflqF6g^W4+m_{3^K#n1~aU|r9 zw^Oe(#7jqyv6dvfolN6rfnSo_p z{|duw;B8Q$C6AnjD1-)vmTdBxa=c@P&+QgRz)-_$F6*}NXSW=u(Q=Dd%WR8WI=Fl6 ziVpC0qr#ppw*Q8RqQq^xVkuE%Fw457OE&j?;Tu?En7dL_C#eRWGi3e`rRx;dg=yTO ztEZnBbpTyH8uPT9qM6a$J%0xFjTQ{^H0sY9n#2O`(pp15p^IK%!rL)!Px@t(cDigk4e@2V0?&TfM!_5I$mJn4}r}XwEzGB literal 0 HcmV?d00001 diff --git a/PositiveNegative.class b/PositiveNegative.class new file mode 100644 index 0000000000000000000000000000000000000000..9f7858904f22b0d0dda148fdbac52b01d1747a1d GIT binary patch literal 1192 zcmaJ=+fGwK6kXE-r!9wDxog34wFRZ#FBDLz5UYSBB{k~PP$n>NI;S~jO5{I$@WJ@% zvphh8i67uUY20(##v;TvnaiHF*Is*_nV-MUegIg(^B6)1TWGP-iZ+JseSXL@4p+OG z*W3G|q#4>4q>_4xA)HDVEkqc40#H>;CsQbKrGytn4DA+d8y)C8$5J@*wJ0-$q+;k_ z3o@mf$*W3L7qlmMIU9q8Zd1R9VJLMeBwaKWdTsQfpMB+WrWgjx{6OSfRpR=M)O)n@HCNg&V-CvPxH^z}e~~s_WaubpUOHIkl{!9FaI0QP ztV)yI|8Jo=V+sjac3tgjk5|@(-g9^S2<{RUOG-c4NQvNnBh-)?!9#{j;u3hXYqiUsZT>!WiX3;Gg480*VCT(U&pF)pg>T_0!_GB*S9v?Wt(Ci6D7ZYC)r$FKi;{XM}Vm$G=5t^=tx@w5)!PXQE1qG+66wrcp z($-7mhv-=(5TUauGW1H9VB;k^F-NF&gnwbyg2m#rq+>&J3%6*xs N22n6P!87DA{0H}|B>eyY literal 0 HcmV?d00001 diff --git a/PositiveNegative.java b/PositiveNegative.java deleted file mode 100644 index 3a11c53..0000000 --- a/PositiveNegative.java +++ /dev/null @@ -1,15 +0,0 @@ -import java.util.Scanner; -public class PositiveNegative { - public static void main (String[] args) { - Scanner sc = new Scanner (System.in); - System.out.println("Enter a number: "); - int num = sc.nextInt(); - if (num > 0) { - System.out.println(num + " is Positive"); - } else if (num < 0) { - System.out.println(num + " is Negative"); - } else { - System.out.println(num + " is Zero"); - } - } -} \ No newline at end of file From 062ec5294e00b16315a81eb46395fa91e18c43fd Mon Sep 17 00:00:00 2001 From: neeraja00 Date: Fri, 1 May 2026 23:12:04 +0530 Subject: [PATCH 7/9] Removed class files --- EvenOrOdd.class | Bin 1135 -> 0 bytes PositiveNegative.class | Bin 1192 -> 0 bytes 2 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 EvenOrOdd.class delete mode 100644 PositiveNegative.class diff --git a/EvenOrOdd.class b/EvenOrOdd.class deleted file mode 100644 index bb11d56fa7af6b749d88fda6310e31db4c1c64c2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1135 zcmaJ=YflqF6g^W4+m_{3^K#n1~aU|r9 zw^Oe(#7jqyv6dvfolN6rfnSo_p z{|duw;B8Q$C6AnjD1-)vmTdBxa=c@P&+QgRz)-_$F6*}NXSW=u(Q=Dd%WR8WI=Fl6 ziVpC0qr#ppw*Q8RqQq^xVkuE%Fw457OE&j?;Tu?En7dL_C#eRWGi3e`rRx;dg=yTO ztEZnBbpTyH8uPT9qM6a$J%0xFjTQ{^H0sY9n#2O`(pp15p^IK%!rL)!Px@t(cDigk4e@2V0?&TfM!_5I$mJn4}r}XwEzGB diff --git a/PositiveNegative.class b/PositiveNegative.class deleted file mode 100644 index 9f7858904f22b0d0dda148fdbac52b01d1747a1d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1192 zcmaJ=+fGwK6kXE-r!9wDxog34wFRZ#FBDLz5UYSBB{k~PP$n>NI;S~jO5{I$@WJ@% zvphh8i67uUY20(##v;TvnaiHF*Is*_nV-MUegIg(^B6)1TWGP-iZ+JseSXL@4p+OG z*W3G|q#4>4q>_4xA)HDVEkqc40#H>;CsQbKrGytn4DA+d8y)C8$5J@*wJ0-$q+;k_ z3o@mf$*W3L7qlmMIU9q8Zd1R9VJLMeBwaKWdTsQfpMB+WrWgjx{6OSfRpR=M)O)n@HCNg&V-CvPxH^z}e~~s_WaubpUOHIkl{!9FaI0QP ztV)yI|8Jo=V+sjac3tgjk5|@(-g9^S2<{RUOG-c4NQvNnBh-)?!9#{j;u3hXYqiUsZT>!WiX3;Gg480*VCT(U&pF)pg>T_0!_GB*S9v?Wt(Ci6D7ZYC)r$FKi;{XM}Vm$G=5t^=tx@w5)!PXQE1qG+66wrcp z($-7mhv-=(5TUauGW1H9VB;k^F-NF&gnwbyg2m#rq+>&J3%6*xs N22n6P!87DA{0H}|B>eyY From 434e26c604ed3c56747072141d818e94a5e2e7a5 Mon Sep 17 00:00:00 2001 From: neeraja00 Date: Fri, 1 May 2026 23:13:19 +0530 Subject: [PATCH 8/9] Removed README file --- README.md | 131 ------------------------------------------------------ 1 file changed, 131 deletions(-) delete mode 100644 README.md diff --git a/README.md b/README.md deleted file mode 100644 index 6f93903..0000000 --- a/README.md +++ /dev/null @@ -1,131 +0,0 @@ -# 🚀 WTC Coding Practice Repository - -Welcome to the **WTC Coding Practice Repository**. -This repository is a collaborative workspace where the **WTC team** solves programming problems, strengthens problem-solving skills, and builds a **strong personal and team coding brand** through consistent GitHub contributions. - ---- - -## 🎯 Purpose of This Repository - -- Practice and master **Data Structures & Algorithms** -- Develop **logical thinking and coding discipline** -- Build a **professional GitHub profile** for each team member -- Maintain **clean code and standard conventions** -- Track individual and team progress transparently - ---- - -## 👥 Who Can Contribute? - -This repository is intended **only for WTC team members**. -Every contributor is expected to: -- Solve assigned programming questions -- Push solutions regularly -- Follow the repository standards strictly - ---- - -## 📁 File Naming Convention (Strictly Mandatory) - -Each solution file **must follow** the naming format below: - -``` -Name_Question_q.No.extension -``` - -### ✅ Correct Examples -``` -Divyansh_TwoSum_q1.py -Aarav_ReverseArray_q12.cpp -Sneha_BinarySearch_q7.java -``` - -### ❌ Incorrect Examples -``` -q1.py -solution.cpp -TwoSum.java -``` - -**Rules:** -- `Name` → Your name (use the same format every time) -- `Question` → Short and meaningful problem name -- `q.No.` → Question number as per the shared list - ---- - -## 🧠 Problem Source - -All problems will be taken from the **official question list shared with the WTC team** -(e.g., Top 100 DSA sheet, daily practice sheet, or curated problem sets). - -Make sure: -- You solve the correct question number -- Your solution matches the problem statement -- No copied or plagiarized code is pushed - ---- - -## 🛠️ Allowed Programming Languages - -You may use: -- **C / C++** -- **Java** -- **Python** -- **JavaScript** - -Choose your preferred language, but ensure: -- Readable code -- Proper formatting -- Meaningful variable names - ---- - -## 📌 Contribution Guidelines - -1. Clone or fork the repository (as instructed) -2. Add your solution file following the naming convention -3. Write clean and well-structured code -4. Push your changes to the repository -5. Update the **progress tracking sheet** after every submission - ---- - -## 📊 Progress Tracking - -Each contributor must update the shared tracking sheet with: -- Name -- Question number solved -- Programming language used -- Date of submission - -This helps maintain **accountability and transparency**. - ---- - -## 🏆 Building the WTC Brand - -This repository represents the **technical identity of WTC**. -Your contributions should reflect: -- Consistency -- Professionalism -- Strong coding fundamentals - -Code as if a **recruiter or senior engineer** is reviewing it. - ---- - -## 📬 Support - -For any doubts related to: -- Problem statements -- Contribution rules -- File naming conventions - -Please contact the **WTC core team**. - ---- - -### 🔥 Code Daily. Improve Constantly. Build Your Brand. - -Happy Coding! 🚀 From f1bada4c0e0488c20143a49b6e00f99991be1b63 Mon Sep 17 00:00:00 2001 From: neeraja00 Date: Fri, 1 May 2026 23:23:57 +0530 Subject: [PATCH 9/9] Removed .vscode folder --- .vscode/settings.json | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index f2518c8..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "editor.quickSuggestions": false, - "editor.suggestOnTriggerCharacters": false, - "editor.inlineSuggest.enabled": false, - "editor.parameterHints.enabled": false, - "editor.wordBasedSuggestions": "off" - -} \ No newline at end of file