Skip to content

Instantly share code, notes, and snippets.

View reknih's full-sized avatar

Martin Haug reknih

View GitHub Profile
@reknih
reknih / din-letter.typ
Created March 26, 2023 10:20
A DIN letter template like the one we use at Typst
/*
DIN Letter template
Save this file in your project. Use it like this
in your project file:
#import "template.typ": *
#show: letter.with(
sender: [
@reknih
reknih / testKnapsack.java
Created July 3, 2017 14:32 — forked from keremistan/testKnapsack.java
These test cases might help you to understand the homework better and you might become aware of some cases that you might have forgotten in your implementation!
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import java.util.LinkedList;
import java.util.Random;
public class testKnapsack {
private Knapsack knapsackGlo;