Skip to content

Commit

Permalink
refresh docs
Browse files Browse the repository at this point in the history
  • Loading branch information
zehengl committed Oct 12, 2023
1 parent 21d8e30 commit 50c44c9
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 23 deletions.
29 changes: 14 additions & 15 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,14 @@

## Summary by Difficulty

> as of 2023-10-06
> as of 2023-10-12
```vegalite
{
"data": {
"values": [
{"Difficulty": "Easy", "Count": 425},
{"Difficulty": "Medium", "Count": 22},
{"Difficulty": "Hard", "Count": 1}
{"Difficulty": "Easy", "Count": 423},
{"Difficulty": "Medium", "Count": 26}
]
},
"mark": {"type": "bar", "tooltip": true},
Expand All @@ -40,29 +39,29 @@
{"Initial": "M", "Count": 25},
{"Initial": "H", "Count": 20},
{"Initial": "E", "Count": 19},
{"Initial": "R", "Count": 18},
{"Initial": "D", "Count": 18},
{"Initial": "R", "Count": 18},
{"Initial": "F", "Count": 17},
{"Initial": "G", "Count": 14},
{"Initial": "L", "Count": 12},
{"Initial": "V", "Count": 10},
{"Initial": "O", "Count": 10},
{"Initial": "V", "Count": 10},
{"Initial": "I", "Count": 9},
{"Initial": "W", "Count": 9},
{"Initial": "K", "Count": 9},
{"Initial": "J", "Count": 9},
{"Initial": "I", "Count": 8},
{"Initial": "K", "Count": 9},
{"Initial": "N", "Count": 5},
{"Initial": "Q", "Count": 5},
{"Initial": "U", "Count": 5},
{"Initial": "1", "Count": 2},
{"Initial": "Y", "Count": 2},
{"Initial": "Z", "Count": 2},
{"Initial": "1", "Count": 2},
{"Initial": "Ó", "Count": 1},
{"Initial": "3", "Count": 1},
{"Initial": "4", "Count": 1},
{"Initial": "9", "Count": 1},
{"Initial": "Ú", "Count": 1},
{"Initial": "Ö", "Count": 1},
{"Initial": "4", "Count": 1}
{"Initial": "Ó", "Count": 1},
{"Initial": "Ú", "Count": 1}
]
},
"mark": {"type": "bar", "tooltip": true},
Expand All @@ -79,14 +78,14 @@
{
"data": {
"values": [
{"Language": "Python", "Count": 445},
{"Language": "Python", "Count": 446},
{"Language": "Go", "Count": 36},
{"Language": "Java", "Count": 25},
{"Language": "C++", "Count": 16},
{"Language": "JavaScript", "Count": 8},
{"Language": "Haskell", "Count": 3},
{"Language": "Rust", "Count": 2},
{"Language": "Kotlin", "Count": 2}
{"Language": "Kotlin", "Count": 2},
{"Language": "Rust", "Count": 2}
]
},
"mark": {"type": "bar", "tooltip": true},
Expand Down
26 changes: 18 additions & 8 deletions docs/solutions.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ hide:
- toc
---

## :red_circle: [10 Kinds of People](https://open.kattis.com/problems/10kindsofpeople)
## :yellow_circle: [10 Kinds of People](https://open.kattis.com/problems/10kindsofpeople)

??? success "Solution in Python"

Expand All @@ -29,7 +29,7 @@ hide:
--8<-- "src/1dfroggereasy.py"
```

## :green_circle: [3D Printed Statues](https://open.kattis.com/problems/3dprinter)
## :yellow_circle: [3D Printed Statues](https://open.kattis.com/problems/3dprinter)

??? success "Solutions in 3 languages"

Expand Down Expand Up @@ -97,7 +97,7 @@ hide:
--8<-- "src/abc.py"
```

## :yellow_circle: [Above Average](https://open.kattis.com/problems/aboveaverage)
## :green_circle: [Above Average](https://open.kattis.com/problems/aboveaverage)

??? success "Solution in Python"

Expand Down Expand Up @@ -1077,7 +1077,7 @@ hide:
--8<-- "src/cprnummer.py"
```

## :green_circle: [Crne](https://open.kattis.com/problems/crne)
## :yellow_circle: [Crne](https://open.kattis.com/problems/crne)

??? success "Solutions in 2 languages"

Expand Down Expand Up @@ -1223,7 +1223,7 @@ hide:
--8<-- "src/dicegame.py"
```

## :green_circle: [A Different Problem](https://open.kattis.com/problems/different)
## :yellow_circle: [A Different Problem](https://open.kattis.com/problems/different)

??? success "Solution in Python"

Expand Down Expand Up @@ -1895,7 +1895,7 @@ hide:
--8<-- "src/greetings2.py"
```

## :green_circle: [Guess the Number](https://open.kattis.com/problems/guess)
## :yellow_circle: [Guess the Number](https://open.kattis.com/problems/guess)

??? success "Solution in Python"

Expand Down Expand Up @@ -2201,7 +2201,7 @@ hide:
--8<-- "src/illuminatispotti.py"
```

## :yellow_circle: [Inheritance](https://open.kattis.com/problems/inheritance)
## :green_circle: [Inheritance](https://open.kattis.com/problems/inheritance)

??? success "Solution in Python"

Expand All @@ -2221,6 +2221,16 @@ hide:
--8<-- "src/internationaldates.py"
```

## :green_circle: [I Repeat Myself I Repeat Myself I Repeat](https://open.kattis.com/problems/irepeatmyself)

??? success "Solution in Python"

=== "Python"

```py linenums="1"
--8<-- "src/irepeatmyself.py"
```

## :green_circle: [IsItHalloween.com](https://open.kattis.com/problems/isithalloween)

??? success "Solutions in 2 languages"
Expand Down Expand Up @@ -4727,7 +4737,7 @@ hide:
--8<-- "src/utf8.py"
```

## :green_circle: [Vaccine Efficacy](https://open.kattis.com/problems/vaccineefficacy)
## :yellow_circle: [Vaccine Efficacy](https://open.kattis.com/problems/vaccineefficacy)

??? success "Solution in Python"

Expand Down

0 comments on commit 50c44c9

Please sign in to comment.