Skip to content

Commit

Permalink
edit button; minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nmheim committed Feb 19, 2024
1 parent 535d522 commit 333ad67
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions .vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,16 @@ export default defineConfig({
{ text: '01: ASCII Art', link: '/homeworks/hw01' },
]
},



],

socialLinks: [
{ icon: 'github', link: 'https://github.com/vuejs/vitepress' }
{ icon: 'github', link: 'https://github.com/aicenter/FUP' }
],

editLink: {
pattern: 'https://github.com/aicenter/FUP/edit/main/:path'
},

search: {
provider: 'local'
},
Expand Down
2 changes: 1 addition & 1 deletion labs/lab01.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ the integer division, you can use the function `quotient`.
:::
-->

## Task 2
### Task 2
Write a function `(num->str n [radix 10])` taking as input an integer `n` together
with `radix` denoting the number of symbols used to represent the number `n` (for example 2,10,16
for binary, decimal, hexadecimal representation respectively). This function returns a string
Expand Down
2 changes: 1 addition & 1 deletion lectures/lecture01.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ outline: deep
---


## Introduction
# Introduction

Functional programming is a declarative style of programming where we structure programs as
compositions of functions.
Expand Down

0 comments on commit 333ad67

Please sign in to comment.