Skip to content

Harsh6575/codeforces

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Codeforces Solutions

This repository contains my Java solutions to problems from Codeforces.
Solutions are organized by contest ID and problem name, written from scratch, tested, and follow a consistent naming style for easy navigation.


🚀 How to Run

  1. Clone the repository:

    git clone https://github.com/Harsh6575/codeforces.git
    cd codeforces
  2. Compile the Java file:

    javac <filename>.java
  3. Run the compiled class:

    java <filename>

📂 Naming Convention

CF<contestID><problemLetter>_<problemName>.java

Example:

CF2117A_False_Alarm.java

CF -> CodeForces 2117 -> Contest ID A -> Problem Letter False_Alarm -> Problem Name


💻 Why Java?

  • Strong typing → Catches many bugs at compile time
  • Readability → Easy for beginners to follow
  • Standard library → Rich set of utilities for competitive programming
  • Cross-platform → Runs anywhere with a JVM

📌 Tags / Topics for GitHub Search

java · competitive-programming · codeforces · algorithm · data-structures · problem-solving · cp · java-solutions


About Author