diff --git a/.obsidian/workspace.json b/.obsidian/workspace.json index a1ef48e..d20c645 100644 --- a/.obsidian/workspace.json +++ b/.obsidian/workspace.json @@ -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", diff --git a/Untitled.md b/Untitled.md new file mode 100644 index 0000000..ec8c6d7 --- /dev/null +++ b/Untitled.md @@ -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 __ +``` \ No newline at end of file