Skip to content

Commit

Permalink
Merge pull request #4 from Madhav160804/test
Browse files Browse the repository at this point in the history
updated readme
  • Loading branch information
Madhav160804 authored May 24, 2024
2 parents 6c51fd0 + 564d0cd commit 04beea6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Codeforces Visualizer

This is code repository for a simple analytics visualization site for [Codeforces online judge](http://codeforces.com/) users using [Codeforces API](https://codeforces.com/apiHelp). The site is currently hosted at [here](https://cfviz.netlify.com/).
This is code repository for a simple analytics visualization site for [Codeforces online judge](http://codeforces.com/) users using [Codeforces API](https://codeforces.com/apiHelp). The site is currently hosted at [here](https://madhav160804.github.io/CF-Analytics/).

### Current features

Expand All @@ -15,17 +15,15 @@ This is code repository for a simple analytics visualization site for [Codeforce
* Count of problems solved with one submission
* Max AC for a single problem (It indicates in how many ways someone solved a problem)
* List of unsolved problems
* Heatmap Calendar for tracking consistency

#### Comparison between two users
* Current, max and min rating
* Current and max rating
* Number of contests
* Best and worst position in contest
* Max positive and negative rating change
* Compared rating time-line
* Total tried problem count compared
* Total solved problem count compared
* Average and max attempts compared
* Count of problems solved with one submission compared
* Max AC for a single problem compared
* Tags compared
* Levels compared
* Max AC for a single problem compared
4 changes: 2 additions & 2 deletions scripts/compare.js
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ async function main()
view.setColumns([0, 1, 2]);

var options = {
title: "MAX SUBMISSIONS",
title: "MAX SUBMISSIONS FOR ONE PROBLEM",
bar: { groupWidth: "50%" }, // Adjust bar width here (e.g., 30%, 40%)
legend: { position: "none" },
vAxis: { minValue: 0 },
Expand Down Expand Up @@ -285,7 +285,7 @@ async function main()
view.setColumns([0, 1, 2]);

var options = {
title: "MAX ACCEPTED",
title: "MAX ACCEPTED FOR ONE PROBLEM",
bar: { groupWidth: "50%" }, // Adjust bar width here (e.g., 30%, 40%)
legend: { position: "none" },
vAxis: { minValue: 0 },
Expand Down

0 comments on commit 04beea6

Please sign in to comment.