vault backup: 2025-01-15 21:34:22

This commit is contained in:
Boyan 2025-01-15 21:34:22 +01:00
parent f46582f252
commit ec0baf3ef5
2 changed files with 42 additions and 26 deletions

View File

@ -4,39 +4,24 @@
"type": "split",
"children": [
{
"id": "5dd164d2586f8c4d",
"id": "90426974024a86f9",
"type": "tabs",
"children": [
{
"id": "8043eee7a29bb5e2",
"id": "fcc28e70ad8acbd2",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Statistics and Probability/Mock exam run 1.md",
"file": "Untitled.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Mock exam run 1"
}
},
{
"id": "42264a7640ab7b88",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "conflict-files-obsidian-git.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "conflict-files-obsidian-git"
"title": "Untitled"
}
}
],
"currentTab": 1
]
}
],
"direction": "vertical"
@ -92,8 +77,7 @@
}
],
"direction": "horizontal",
"width": 234.5,
"collapsed": true
"width": 234.5
},
"right": {
"id": "fd4347e6b5300816",
@ -214,9 +198,12 @@
"omnisearch:Omnisearch": false
}
},
"active": "42264a7640ab7b88",
"active": "fcc28e70ad8acbd2",
"lastOpenFiles": [
"Untitled.md",
"Statistics and Probability/Mock exam run 1.md",
"Statistics and Probability/Intro to probability.md",
"Statistics and Probability/Data.md",
"conflict-files-obsidian-git.md",
"Discrete Structures/Recurrence relations.md",
"Statistics and Probability/Support Lecture.md",
@ -243,7 +230,6 @@
"Discrete Structures/Midterm",
"Extracurricular/CANSAT/img/Pasted image 20241206134156.png",
"Extracurricular/CANSAT/Parts Proposal.md",
"Untitled.md",
"Untitled.canvas",
"Discrete Structures/Mathematical Data Structures.md",
"Discrete Structures/Relations and Digraphs.md",
@ -256,8 +242,6 @@
"Extracurricular/CANSAT/Initial Meeting.md",
"Extracurricular/CANSAT/img",
"Advanced Algorithms/Recurrence relations.md",
"Advanced Algorithms/Graph Algorithms.md",
"Linear Algebra/Matrices.md",
"Advanced Algorithms/assets/pnp",
"Advanced Algorithms/assets/graph",
"Advanced Algorithms/practicals",

32
Untitled.md Normal file
View File

@ -0,0 +1,32 @@
```haskell
add :: (Int -> Int) -> Int
add x y = x+y
```
```python
class Number:
# Some implementation
class Float(Number):
# Some implentation
class Integer(Number):
# Some implementation
def add(numA:Number, numB:Number) -> Number:
```
```python
class MyClass:
def __eq__(self):
# MyClass :: Eq
def __str__(self)
# MyClass :: Show
def __
```