Downsize the student image

This commit is contained in:
Eric Coissac
2025-11-01 21:49:18 +01:00
parent d49592c5d4
commit 0eae496a94
38 changed files with 8227 additions and 754 deletions

View File

@@ -0,0 +1,13 @@
digraph finite_state_machine {
rankdir=LR;
{
node [style = invis]; I;
}
node [shape = doublecircle]; 3;
node [shape = circle];
I -> 0
0 -> 1 [ label = "A" ];
1 -> 2 [ label = "T" ];
2 -> 3 [ label = "G" ];
}