vault backup: 2025-01-15 21:34:22
This commit is contained in:
parent
f46582f252
commit
ec0baf3ef5
36
.obsidian/workspace.json
vendored
36
.obsidian/workspace.json
vendored
@ -4,39 +4,24 @@
|
|||||||
"type": "split",
|
"type": "split",
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"id": "5dd164d2586f8c4d",
|
"id": "90426974024a86f9",
|
||||||
"type": "tabs",
|
"type": "tabs",
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"id": "8043eee7a29bb5e2",
|
"id": "fcc28e70ad8acbd2",
|
||||||
"type": "leaf",
|
"type": "leaf",
|
||||||
"state": {
|
"state": {
|
||||||
"type": "markdown",
|
"type": "markdown",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "Statistics and Probability/Mock exam run 1.md",
|
"file": "Untitled.md",
|
||||||
"mode": "source",
|
"mode": "source",
|
||||||
"source": false
|
"source": false
|
||||||
},
|
},
|
||||||
"icon": "lucide-file",
|
"icon": "lucide-file",
|
||||||
"title": "Mock exam run 1"
|
"title": "Untitled"
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"currentTab": 1
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"direction": "vertical"
|
"direction": "vertical"
|
||||||
@ -92,8 +77,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"direction": "horizontal",
|
"direction": "horizontal",
|
||||||
"width": 234.5,
|
"width": 234.5
|
||||||
"collapsed": true
|
|
||||||
},
|
},
|
||||||
"right": {
|
"right": {
|
||||||
"id": "fd4347e6b5300816",
|
"id": "fd4347e6b5300816",
|
||||||
@ -214,9 +198,12 @@
|
|||||||
"omnisearch:Omnisearch": false
|
"omnisearch:Omnisearch": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"active": "42264a7640ab7b88",
|
"active": "fcc28e70ad8acbd2",
|
||||||
"lastOpenFiles": [
|
"lastOpenFiles": [
|
||||||
|
"Untitled.md",
|
||||||
"Statistics and Probability/Mock exam run 1.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",
|
"conflict-files-obsidian-git.md",
|
||||||
"Discrete Structures/Recurrence relations.md",
|
"Discrete Structures/Recurrence relations.md",
|
||||||
"Statistics and Probability/Support Lecture.md",
|
"Statistics and Probability/Support Lecture.md",
|
||||||
@ -243,7 +230,6 @@
|
|||||||
"Discrete Structures/Midterm",
|
"Discrete Structures/Midterm",
|
||||||
"Extracurricular/CANSAT/img/Pasted image 20241206134156.png",
|
"Extracurricular/CANSAT/img/Pasted image 20241206134156.png",
|
||||||
"Extracurricular/CANSAT/Parts Proposal.md",
|
"Extracurricular/CANSAT/Parts Proposal.md",
|
||||||
"Untitled.md",
|
|
||||||
"Untitled.canvas",
|
"Untitled.canvas",
|
||||||
"Discrete Structures/Mathematical Data Structures.md",
|
"Discrete Structures/Mathematical Data Structures.md",
|
||||||
"Discrete Structures/Relations and Digraphs.md",
|
"Discrete Structures/Relations and Digraphs.md",
|
||||||
@ -256,8 +242,6 @@
|
|||||||
"Extracurricular/CANSAT/Initial Meeting.md",
|
"Extracurricular/CANSAT/Initial Meeting.md",
|
||||||
"Extracurricular/CANSAT/img",
|
"Extracurricular/CANSAT/img",
|
||||||
"Advanced Algorithms/Recurrence relations.md",
|
"Advanced Algorithms/Recurrence relations.md",
|
||||||
"Advanced Algorithms/Graph Algorithms.md",
|
|
||||||
"Linear Algebra/Matrices.md",
|
|
||||||
"Advanced Algorithms/assets/pnp",
|
"Advanced Algorithms/assets/pnp",
|
||||||
"Advanced Algorithms/assets/graph",
|
"Advanced Algorithms/assets/graph",
|
||||||
"Advanced Algorithms/practicals",
|
"Advanced Algorithms/practicals",
|
||||||
|
32
Untitled.md
Normal file
32
Untitled.md
Normal 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 __
|
||||||
|
```
|
Loading…
x
Reference in New Issue
Block a user