All public logs
Jump to navigation
Jump to search
Combined display of all available logs of Marek Běhálek Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 09:46, 27 September 2023 Beh01 talk contribs marked FP Laboratory 3 for translation
- 13:48, 25 September 2023 Beh01 talk contribs marked Functional programming for translation
- 13:38, 25 September 2023 Beh01 talk contribs marked Functional programming for translation
- 10:15, 22 September 2023 Beh01 talk contribs marked Functional programming for translation
- 06:41, 19 September 2023 Beh01 talk contribs reviewed translation Translations:FP Laboratory 2/14/cs
- 06:40, 19 September 2023 Beh01 talk contribs created page Translations:FP Laboratory 2/22/cs (Created page with "* Definujte rekurzivní funkci, která vypočítá zbytek po dělení celým číslem.")
- 06:40, 19 September 2023 Beh01 talk contribs created page Translations:FP Laboratory 2/21/cs (Created page with "* Pomocí sčítání nad celými čísly implementujte rekurzivní funkci, která realizuje násobení celých čísel.")
- 06:39, 19 September 2023 Beh01 talk contribs created page Translations:FP Laboratory 2/20/cs (Created page with "* Pomocí násobení přes celá čísla implementujte rekurzivní funkci, která realizuje n-tou mocninu celého čísla.")
- 06:39, 19 September 2023 Beh01 talk contribs created page Translations:FP Laboratory 2/19/cs (Created page with "* Definujte funkci, která vrací, kolik z jejích vstupů je větších než jejich průměrná hodnota.")
- 06:38, 19 September 2023 Beh01 talk contribs created page Translations:FP Laboratory 2/18/cs (Created page with "* Definujte funkci, která vypočítá průměr tří celých čísel.")
- 06:38, 19 September 2023 Beh01 talk contribs created page Translations:FP Laboratory 2/17/cs (Created page with "* Definujte funkci, která vrací true, pokud se všechny čtyři argumenty rovnají.")
- 06:37, 19 September 2023 Beh01 talk contribs created page Translations:FP Laboratory 2/16/cs (Created page with "== Additional exercises == * Definujte funkci, která vrací true, pokud jsou všechny tři argumenty různé.")
- 06:36, 19 September 2023 FuzzyBot talk contribs created page Translations:FP Laboratory 2/22/en (Importing a new version from external source)
- 06:36, 19 September 2023 FuzzyBot talk contribs created page Translations:FP Laboratory 2/21/en (Importing a new version from external source)
- 06:36, 19 September 2023 FuzzyBot talk contribs created page Translations:FP Laboratory 2/20/en (Importing a new version from external source)
- 06:36, 19 September 2023 FuzzyBot talk contribs created page Translations:FP Laboratory 2/19/en (Importing a new version from external source)
- 06:36, 19 September 2023 FuzzyBot talk contribs created page Translations:FP Laboratory 2/18/en (Importing a new version from external source)
- 06:36, 19 September 2023 FuzzyBot talk contribs created page Translations:FP Laboratory 2/17/en (Importing a new version from external source)
- 06:36, 19 September 2023 FuzzyBot talk contribs created page Translations:FP Laboratory 2/16/en (Importing a new version from external source)
- 06:35, 19 September 2023 Beh01 talk contribs marked FP Laboratory 2 for translation
- 06:27, 19 September 2023 Beh01 talk contribs marked FP Laboratory 2 for translation
- 06:24, 19 September 2023 Beh01 talk contribs marked Functional programming for translation
- 07:19, 15 September 2023 Beh01 talk contribs marked Functional programming for translation
- 08:30, 22 November 2022 Beh01 talk contribs created page PFP Laboratory 11 (Created page with "== State monad== * In your prefered programming language, define a function representing a state: <code>State s a :: s -> (s,a)</code>. For example in C#, it will be someth...")
- 07:31, 22 November 2022 Beh01 talk contribs created page PFP Laboratory 10 (Created page with "== Monads == * In your prefered programming language, implement data type <syntaxhighlight lang="Haskell">bubbleSort :: Array Int Int -> Array Int Int</syntaxhighlight> <syn...")
- 09:39, 16 November 2022 Beh01 talk contribs created page Translations:FP Laboratory 11/Page display title/cs (Created page with "FP Cvičení 11")
- 12:35, 14 November 2022 Beh01 talk contribs marked FP Laboratory 10 for translation
- 07:51, 14 November 2022 Beh01 talk contribs marked Functional programming for translation
- 13:04, 4 November 2022 Beh01 talk contribs created page FP Homework 4 (Created page with "== Arrays and vectors in Haskell== == 1 - Bubble sort == * Create a function, that sorts an array using quicksort algorithm. <syntaxhighlight lang="Haskell">quickSort :: Ar...")
- 12:52, 4 November 2022 Beh01 talk contribs created page PFP Laboratory 9 (Created page with "== Arrays == == Bubble sort == * Create a function, that sorts an array using the bubble sort algorithm. <syntaxhighlight lang="Haskell">bubbleSort :: Array Int Int -> Arra...")
- 09:56, 31 October 2022 Beh01 talk contribs created page FP Homework 3 (Created page with "= Immutable data types = == Immutable Array == <syntaxhighlight lang="Haskell"> data Point = Point Int Int data Shape = Circle Point Int | Rectangle {topLeft:: Poi...")
- 12:04, 26 October 2022 Beh01 talk contribs marked Functional programming for translation
- 08:11, 24 October 2022 Beh01 talk contribs created page PFP Laboratory 8 (Created page with "== Monads == * Consider you have a type: <syntaxhighlight lang="Haskell"> newtype State s a = State { runState :: s -> (s, a) } </syntaxhighlight> Make this type the instance...")
- 12:04, 11 October 2022 Beh01 talk contribs created page PFP Presentations (Created page with "== List of topics 2022/23 == * Web API - Scotty https://hackage.haskell.org/package/scotty * Web API - servant https://docs.servant.dev/en/stable/ * Database - postgresql-simp...")
- 10:31, 10 October 2022 Beh01 talk contribs marked Functional programming for translation
- 08:55, 7 October 2022 Beh01 talk contribs marked FP Homework 1 for translation
- 08:11, 4 October 2022 Beh01 talk contribs marked Main Page for translation
- 09:44, 30 September 2022 Beh01 talk contribs created page PFP Laboratory 7 (Created page with "== Working with files - monad IO == * Create a program that reads a file and number it's lines and writes it on the screen. <div> For the solution look at: </translate>[https...")
- 09:42, 30 September 2022 Beh01 talk contribs created page PFP Laboratory 6 (Created page with " == Binary Trees == * Create a data type <code>Tree</code> that defines binary tree where values are stored in leaves and also in branches. <div class="mw-collapsible mw-coll...")
- 10:57, 29 September 2022 Beh01 talk contribs created page PFP Laboratory 5 (Created page with " == User defined data types and type classes == <div style="float: right"> 80px|link=https://youtu.be/lo0pdwWoSx4</div> Consider following representa...")
- 10:25, 29 September 2022 Beh01 talk contribs created page PFP Laboratory 4 (Created page with "== List of lists == <div style="float: right"> 80px|link=https://youtu.be/voiTk64SaQM</div> Consider following type representing picture: <syntaxhigh...")
- 10:11, 29 September 2022 Beh01 talk contribs created page PFP Laboratory 3 (Created page with "== High-order functions == * Create a function that takes a string and converts all characters to upper case letters. <syntaxhighlight lang="Haskell">allToUpper :: String ->...")
- 10:00, 29 September 2022 Beh01 talk contribs created page PFP Laboratory 2 (Created page with "== Simple functions working with list == Implement following functions: * Create a function that computes length of a list. <syntaxhighlight lang="Haskell">length' :: [a] -> I...")
- 13:16, 27 September 2022 Beh01 talk contribs created page PFP Laboratory 1 (Created page with "== Working environment == *Run <code>ghci</code> from the command line. it will start GHC Interpreter, the output should be something like this: </translate> <syntaxhighligh...")
- 10:25, 21 September 2022 Beh01 talk contribs marked Functional programming for translation
- 09:58, 14 September 2022 Beh01 talk contribs marked Functional programming for translation
- 09:54, 14 September 2022 Beh01 talk contribs marked Functional programming for translation
- 08:23, 6 September 2022 Beh01 talk contribs marked Functional programming for translation
- 08:19, 6 September 2022 Beh01 talk contribs marked Functional programming for translation
- 07:21, 29 August 2022 Beh01 talk contribs created page Translations:Functional programming/37/cs (Created page with "*Wiki Books: Haskell, dostupné zdarma na: https://en.wikibooks.org/wiki/Haskell")