This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- :l C:\Users\BMarkus\Dropbox\haskell\yolo.hs | |
-- | ABOUT YOLO | |
-- | |
-- | |
module Yolo | |
( Node | |
, Edge | |
, Weight |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# T R I E | |
# Project Trie Implementation | |
# Author Barnabas Markus | |
# Email [email protected] | |
# Date 13.07.2017 | |
# Python 3.6 | |
# License MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{- SUDOKU SOLVER -} | |
module Sudoku | |
( | |
solve | |
) where | |
import Data.List | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{- BINARY SEARCH TREE IMPLEMENTATION -} | |
module Tree | |
( Tree(..) | |
, pretty | |
, size | |
, depth | |
, empty | |
, contains | |
, insert |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# N A I V E B A Y E S C L A S S I F I E R | |
# Project Naive-Bayes Classifier | |
# Author Barnabas Markus | |
# Email [email protected] | |
# Date 18.01.2017 | |
# Python 3.6 | |
# License MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# K N N A L G O R I T H M | |
# Project KNN Algorithm Implementation | |
# Author Barnabas Markus | |
# Email [email protected] | |
# Date 13.01.2017 | |
# Python 3.5.1 | |
# License MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# B I N A R Y S E A R C H T R E E | |
# Project Binary Search Tree | |
# Author Barnabas Markus | |
# Email [email protected] | |
# Date 19.09.2016 | |
# Python 3.5.1 | |
# License MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# A B S T R A C T D A T A S T R U C T U R E S | |
# Project Abstract Data Structures (Stack and Queue) | |
# Author Barnabas Markus | |
# Email [email protected] | |
# Date 14.09.2016 | |
# Python 3.5.1 | |
# License MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# S I E V E O F E R A T O S T H E N E S | |
# Project Sieve of Eratosthenes Prime Finder | |
# Author Barnabas Markus | |
# Email [email protected] | |
# Date 05.08.2016 | |
# Python 3.5.1 | |
# License MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# G E N E T I C A L G O R I T H M S | |
# Project Genetic Algorithm with Python | |
# Author Barnabas Markus | |
# Email [email protected] | |
# Date 29.02.2016 | |
# Python 3.5.1 | |
# License MIT |
NewerOlder