Compare commits

...

2 Commits

Author SHA1 Message Date
Ryan Russell
583340ebb7
Merge 89330bf573 into 2c67b48c21 2024-04-25 08:31:20 +08:00
Ryan Russell
89330bf573
Improve readability
Signed-off-by: Ryan Russell <ryanrussell@users.noreply.github.com>
2022-05-30 08:22:10 -05:00
4 changed files with 4 additions and 4 deletions

View File

@ -46,7 +46,7 @@ Let's say we have an array of prices `[7, 6, 4, 3, 1]` and we're on the _1st_ da
1. _Option 1: Keep the money_ → profit would equal to the profit from buying/selling the rest of the stocks → `keepProfit = profit([6, 4, 3, 1])`. 1. _Option 1: Keep the money_ → profit would equal to the profit from buying/selling the rest of the stocks → `keepProfit = profit([6, 4, 3, 1])`.
2. _Option 2: Buy/sell at current price_ → profit in this case would equal to the profit from buying/selling the rest of the stocks plus (or minus, depending on whether we're selling or buying) the current stock price → `buySellProfit = -7 + profit([6, 4, 3, 1])`. 2. _Option 2: Buy/sell at current price_ → profit in this case would equal to the profit from buying/selling the rest of the stocks plus (or minus, depending on whether we're selling or buying) the current stock price → `buySellProfit = -7 + profit([6, 4, 3, 1])`.
The overall profit would be equal to → `overalProfit = Max(keepProfit, buySellProfit)`. The overall profit would be equal to → `overallProfit = Max(keepProfit, buySellProfit)`.
As you can see the `profit([6, 4, 3, 1])` task is being solved in the same recursive manner. As you can see the `profit([6, 4, 3, 1])` task is being solved in the same recursive manner.

View File

@ -93,7 +93,7 @@ three factors: the size of the bloom filter, the
number of hash functions we use, and the number number of hash functions we use, and the number
of items that have been inserted into the filter. of items that have been inserted into the filter.
The formula to calculate probablity of a false positive is: The formula to calculate probability of a false positive is:
( 1 - e <sup>-kn/m</sup> ) <sup>k</sup> ( 1 - e <sup>-kn/m</sup> ) <sup>k</sup>

View File

@ -145,7 +145,7 @@ end remove
findParent(value, root) findParent(value, root)
Pre: value is the value of the node we want to find the parent of Pre: value is the value of the node we want to find the parent of
root is the root node of the BST and is != ø root is the root node of the BST and is != ø
Post: a reference to the prent node of value if found; otherwise ø Post: a reference to the parent node of value if found; otherwise ø
if value = root.value if value = root.value
return ø return ø
end if end if

View File

@ -143,7 +143,7 @@ end remove
findParent(value, root) findParent(value, root)
Pre: value is the value of the node we want to find the parent of Pre: value is the value of the node we want to find the parent of
root is the root node of the BST and is != ø root is the root node of the BST and is != ø
Post: a reference to the prent node of value if found; otherwise ø Post: a reference to the parent node of value if found; otherwise ø
if value = root.value if value = root.value
return ø return ø
end if end if