diff options
author | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-04-04 04:02:42 -0700 |
---|---|---|
committer | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-04-04 04:02:42 -0700 |
commit | 01bbd084f1908a6815d53a1bd42b02c042e44bdb (patch) | |
tree | 0af4fe0970e51fb5e48e67ca67e2cfc3c8bd07ab /de-de/dynamic-programming-de.html.markdown | |
parent | 818b8eec46b11b36b5235ecbce540557afec4687 (diff) |
Add empty lines before code blocks
otherwise they don't render as blocks
Diffstat (limited to 'de-de/dynamic-programming-de.html.markdown')
-rw-r--r-- | de-de/dynamic-programming-de.html.markdown | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/de-de/dynamic-programming-de.html.markdown b/de-de/dynamic-programming-de.html.markdown index 58568b3b..9cf461d0 100644 --- a/de-de/dynamic-programming-de.html.markdown +++ b/de-de/dynamic-programming-de.html.markdown @@ -56,6 +56,7 @@ wie `largest_sequences_so_far` und dessen Index würde eine Menge Zeit sparen. Ein ähnliches Konzept könnte auch bei der Suche nach dem längsten Weg in gerichteten azyklischen Graphen angewandt werden. + ```python for i=0 to n-1 LS[i]=1 |