Skip to content

Commit

Permalink
refresh docs
Browse files Browse the repository at this point in the history
  • Loading branch information
zehengl committed Nov 7, 2023
1 parent 647d0ea commit ba45002
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 10 deletions.
12 changes: 6 additions & 6 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@

## Summary by Difficulty

> as of 2023-11-06
> as of 2023-11-07
```vegalite
{
"data": {
"values": [
{"Difficulty": "Easy", "Count": 423},
{"Difficulty": "Medium", "Count": 29}
{"Difficulty": "Easy", "Count": 427},
{"Difficulty": "Medium", "Count": 27}
]
},
"mark": {"type": "bar", "tooltip": true},
Expand All @@ -36,14 +36,14 @@
{"Initial": "A", "Count": 34},
{"Initial": "P", "Count": 33},
{"Initial": "B", "Count": 31},
{"Initial": "T", "Count": 29},
{"Initial": "T", "Count": 30},
{"Initial": "M", "Count": 25},
{"Initial": "H", "Count": 20},
{"Initial": "E", "Count": 19},
{"Initial": "D", "Count": 18},
{"Initial": "R", "Count": 18},
{"Initial": "F", "Count": 17},
{"Initial": "G", "Count": 14},
{"Initial": "G", "Count": 15},
{"Initial": "L", "Count": 12},
{"Initial": "I", "Count": 10},
{"Initial": "O", "Count": 10},
Expand Down Expand Up @@ -80,7 +80,7 @@
{
"data": {
"values": [
{"Language": "Python", "Count": 449},
{"Language": "Python", "Count": 451},
{"Language": "Go", "Count": 36},
{"Language": "Java", "Count": 25},
{"Language": "C++", "Count": 16},
Expand Down
28 changes: 24 additions & 4 deletions docs/solutions.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ hide:
--8<-- "src/4thought.py"
```

## :yellow_circle: [99 Problems](https://open.kattis.com/problems/99problems)
## :green_circle: [99 Problems](https://open.kattis.com/problems/99problems)

??? success "Solution in Python"

Expand Down Expand Up @@ -1097,7 +1097,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 @@ -1925,6 +1925,16 @@ hide:
--8<-- "src/guess.py"
```

## :green_circle: [Guess Who](https://open.kattis.com/problems/guesswho)

??? success "Solution in Python"

=== "Python"

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

## :green_circle: [Watch Out For Those Hailstones!](https://open.kattis.com/problems/hailstone)

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

## :yellow_circle: [Lamps](https://open.kattis.com/problems/lamps)
## :green_circle: [Lamps](https://open.kattis.com/problems/lamps)

??? success "Solution in Python"

Expand Down Expand Up @@ -3781,7 +3791,7 @@ hide:
--8<-- "src/samedigitseasy.py"
```

## :yellow_circle: [Same Digits (Hard)](https://open.kattis.com/problems/samedigitshard)
## :green_circle: [Same Digits (Hard)](https://open.kattis.com/problems/samedigitshard)

??? success "Solution in Python"

Expand Down Expand Up @@ -4419,6 +4429,16 @@ hide:
--8<-- "src/tarifa.py"
```

## :green_circle: [Time Travelling Temperatures](https://open.kattis.com/problems/temperature)

??? success "Solution in Python"

=== "Python"

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

## :yellow_circle: [Temperature Confusion](https://open.kattis.com/problems/temperatureconfusion)

??? success "Solution in Python"
Expand Down

0 comments on commit ba45002

Please sign in to comment.