This file contains hidden or 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
| import java.util.ArrayDeque; | |
| import java.util.ArrayList; | |
| import java.util.Deque; | |
| import java.util.List; | |
| public class MultiplePermuter<T> { | |
| private final List<List<T>> data; | |
| private final Deque<Integer> indexStack; | |
| private final List<List<List<T>>> result; | |
| private final int numberOfGroups; |
This file contains hidden or 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
| Design and Analysis of Algorithms - 5 / 5 | |
| Distributed Systems - 5 / 10 | |
| Introduction to Machine Learning - 5 / 15 | |
| Master's thesis - 30 / 45 TODO | |
| CSC - 5 / 50 TODO | |
| String processing algorithms - 5 / 55 | |
| Data Compression Techniques - 5 / 60 | |
| Seminar on Tractability - 3 / 63 | |
| Seminar on Combinatorial Pattern Matching - 3 / 66 | |
| Tiedon louhinta - 5 / 71 |
This file contains hidden or 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
| import java.util.ArrayDeque; | |
| import java.util.ArrayList; | |
| import java.util.Deque; | |
| import java.util.List; | |
| class RegexParserResearch { | |
| public static Deque<Token> shuntingYardAlgorithm(String regex) { | |
| List<Token> tokens = tokenize(regex); | |
| Deque<Token> output = new ArrayDeque<>(); |
This file contains hidden or 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
| #include <windows.h> | |
| #include <stdio.h> | |
| #define MAX(X, Y) (((X) < (Y)) ? (Y) : (X)) | |
| int main() { | |
| ULONGLONG ta = GetTickCount64(); | |
| ULONGLONG maximumDuration = 0; |
This file contains hidden or 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
| # Author: Rodion Efremov | |
| # Version: VIII | |
| # Date: Jul 20, 2023 13:55. | |
| # Info: Fixing stuff. | |
| import os | |
| import pygame | |
| import time | |
| import random |
This file contains hidden or 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
| # Author: Rodion Efremov | |
| # Version: IV | |
| # Date: Jul 16, 2023 15:43. | |
| # Info: Fixing errors. | |
| import os | |
| import pygame | |
| import time | |
| import random |
This file contains hidden or 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
| # Version: E | |
| # Author: Rodion Efremov | |
| # Date: Jul 7, 2023 15:37 | |
| # Info: Debugging mod for inclusion of Python classes in ETC modes. | |
| # What's new: Trying to fix the distribution. | |
| import pygame | |
| import pygame.freetype | |
| import random |
This file contains hidden or 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
| # Version: G | |
| import pygame | |
| import pygame.freetype | |
| RED = (255, 0, 0) | |
| WHITE = (255, 255, 255) | |
| def setup(screen, etc): | |
| pygame.freetype.init() |
This file contains hidden or 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
| # Author: Rodion Efremov | |
| # Version: XVIII | |
| # Date: Jul 14, 2023 15:13. | |
| # Info: Trying to fix the random LFO. | |
| import os | |
| import pygame | |
| import time | |
| import random | |
| import pygame.freetype |
This file contains hidden or 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
| import os | |
| import pygame | |
| font = None | |
| def setup(screen, etc): | |
| global font | |
| font = pygame.font.SysFont("monospace", 20) | |
| pass |