practice_log --platform=all

Codes.

A working log of DSA problems I've solved across CodeForces, CodeChef, HackerRank and Coding Ninjas — committed as I learn, mistakes included.

CodeForces/71A.cpp
01 — About

Why this repo exists

This is where I keep the code from every problem I sit down and actually solve — not a curated portfolio, just the raw history. Some files are one-liners from a first CodeChef attempt, some are Codeforces Div-2 A's, some are half-finished course scaffolds.

I'm a B.Tech IT student building toward a full-stack + DSA foundation. This repo is the DSA half of that — the MERN half lives in a separate practice log.

CC++JavaScript #CoderArmy
5
platforms touched
20+
solutions committed
3
languages
02 — Submission Log

What's in each folder

Platform
What's there
Files
Status
CodeForcesDiv-2 A's, tackled cold
71A, 231A, 282A + 2 more
C++
accepted
view →
CodeChefFundamentals — primes, triangles, digit sums
14 files across C / C++
C, C++
accepted
view →
HackerRankProject Euler style — Multiples of 3 and 5
1 file
JavaScript
accepted
view →
CodeStudioCoding Ninjas — Minor1 project scaffold
1 scaffold project
C++
in progress
view →
StriversC++ fundamentals, following the sheet
1 file
C++
in progress
view →
03 — A Few Solved Problems

Off the CodeForces shelf

71A

Way Too Long Words

Abbreviate any word over 10 letters to first–count–last. Classic string warm-up.

231A

Team

Count problems a team agrees on solving — majority vote across three opinions.

282A

Bit++

Parse a sequence of ++X / X-- style statements and track the running value.