Skip to content

Commit

Permalink
Unified style of references in algorithm cheat sheet.
Browse files Browse the repository at this point in the history
  • Loading branch information
dnadlinger committed Apr 6, 2011
1 parent b04c79e commit 2988401
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions std/algorithm.d
Expand Up @@ -75,11 +75,11 @@ $(TR $(TH Function Name) $(TH Description)
)
$(LEADINGROW Searching
)
$(TR $(TDNW $(MYREF balancedParens)) $(TD $(D
$(TR $(TDNW $(LREF balancedParens)) $(TD $(D
balancedParens("((1 + 1) / 2)")) returns $(D true) because the string
has balanced parentheses.)
)
$(TR $(TDNW $(MYREF boyerMooreFinder)) $(TD $(D find("hello
$(TR $(TDNW $(LREF boyerMooreFinder)) $(TD $(D find("hello
world", boyerMooreFinder("or"))) returns $(D "orld") using the $(LUCKY
Boyer-Moore _algorithm).)
)
Expand All @@ -97,7 +97,7 @@ example, $(D countUntil("hello!", "o")) returns $(D 4).)
$(TR $(TDNW $(LREF endsWith)) $(TD $(D endsWith("rocks", "ks"))
returns $(D true).)
)
$(TR $(TD $(MYREF find)) $(TD $(D find("hello world",
$(TR $(TD $(LREF find)) $(TD $(D find("hello world",
"or")) returns $(D "orld") using linear search.)
)
$(TR $(TDNW $(LREF findAdjacent)) $(TD $(D findAdjacent([1, 2,
Expand Down

0 comments on commit 2988401

Please sign in to comment.