Skip to content
This repository has been archived by the owner on Jan 21, 2024. It is now read-only.

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
DET171 committed Feb 23, 2022
1 parent 28ef3a7 commit c675791
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 6 deletions.
3 changes: 2 additions & 1 deletion docs/.vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ module.exports = {
[
'@vuepress/plugin-shiki',
{
theme: 'solarized-dark',
theme: 'one-dark-pro',
},
],
[
Expand Down Expand Up @@ -102,6 +102,7 @@ module.exports = {
children: [
'/guide/more-adv/README.md',
'/guide/more-adv/dp.md',
'/guide/more-adv/structsnclasses.md',
'/guide/more-adv/trees.md',
'/guide/more-adv/gt.md',
'/guide/more-adv/rf.md',
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/more-adv/gt.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# GT
# Graph Theory
8 changes: 4 additions & 4 deletions docs/guide/more-adv/rf.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ Pseudocode:

```js
function fn(a, b) {
if (a <= b) {
console.log(a);
return fn(a + 1, b);
}
if (a <= b) {
console.log(a);
return fn(a + 1, b);
}
}
fn(1, 10);
```
Expand Down
1 change: 1 addition & 0 deletions docs/guide/more-adv/structsnclasses.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Stucts and Classes
13 changes: 13 additions & 0 deletions docs/guide/solutions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,17 @@ int main() {
}
```

## addition

```cpp
#include <iostream>
using namespace std;

int main() {
long long int a, b;
cin >> a >> b;
cout << a + b << endl;
}
```

Nothing else for now :D

0 comments on commit c675791

Please sign in to comment.