Skip to content

Cipher-Schools/SEM_CJ_Ajai_2026

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

78 Commits
 
 
 
 
 
 
 
 

Repository files navigation

🚀 SEM_CJ_AJAI_2026

Welcome to the Java Core Practice Repository 👨‍💻🔥

This repository is created to help students:

  • Learn Java fundamentals
  • Practice daily coding
  • Learn Git & GitHub
  • Improve consistency

📅 Daily Questions

Every day, a new question will be uploaded inside:

Daily problems → Question (with today’s date)

Students must:

  1. Solve the question.
  2. Upload their solution.
  3. Create a Pull Request (PR).

Questions will be updated daily. Make sure you check regularly.


🛠 How to Submit Your Solution (Step-by-Step)

Follow these steps carefully.


✅ STEP 1: Fork the Repository

  1. Open this repository on GitHub.
  2. Click the Fork button (top right).
  3. This creates a copy in your GitHub account.

✅ STEP 2: Clone Your Fork

Open Terminal / Git Bash and run:



git clone [https://github.com/YOUR-USERNAME/SEM_CJ_AJAI_2026.git](https://github.com/YOUR-USERNAME/SEM_CJ_AJAI_2026.git)

Then move into the folder:


cd SEM_CJ_AJAI_2026


✅ STEP 3: Create a New Branch

⚠️ Important: Do NOT push directly to main branch.

Create a new branch like this:


git checkout -b solution-DD-MM-YYYY-yourname

Example:


git checkout -b solution-17-02-2026-rahul


✅ STEP 4: Add Your Solution File

Go to:

Daily problems → Solution (with today’s date)

Create a new file:


YourName_Q1.java

Example:


Rahul_Q1.java

Write your Java solution inside it.


✅ STEP 5: Add Your Changes


git add .


✅ STEP 6: Commit Your Changes


git commit -m "Added solution for DD-MM-YYYY by YourName"

Example:


git commit -m "Added solution for 17-02-2026 by Rahul"


✅ STEP 7: Push Your Branch


git push origin solution-DD-MM-YYYY-yourname


✅ STEP 8: Create Pull Request

  1. Go to your forked repository on GitHub.

  2. Click Compare & Pull Request.

  3. Add a proper title:

    Example:


Solution for 17-02-2026 - Rahul

  1. Click Create Pull Request.

Done ✅


📌 Rules

  • Write clean and readable code.
  • Use proper class name.
  • Do not modify other students’ files.
  • One question = one file.
  • Always create a new branch.

🎯 Goal

Solve daily. Push daily. Improve daily.

Consistency is more important than motivation.


Maintained by: Ajai Raj

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors