notes/school/di-ma/uebung/07/07_2_2.dot
Valentin Brandl 4d1a6e3e32
All checks were successful
the build was successful
Add solution for dima 7.2 and 7.4
2018-11-28 19:02:38 +01:00

18 lines
214 B
Plaintext

graph {
node [ shape="circle" ]
{
rank=same;
1; 2;
}
{
rank=same;
3;
}
{
rank=same;
4; 5;
}
1 -- 2 -- 3 -- 1;
3 -- 4 -- 5 -- 3;
}