Skip to content

Commit

Permalink
fix and regenreate
Browse files Browse the repository at this point in the history
  • Loading branch information
cairoeth committed Jul 23, 2024
1 parent 3e4f360 commit 5fc64a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/utils/structs/Heap.sol
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import {Panic} from "../Panic.sol";
*
* The structure is designed to perform the following operations with the corresponding complexities:
*
* * peek (get the highest priority value in set): O(1)
* * peek (get the highest priority value in the set): O(1)
* * insert (insert a value in the set): O(log(n))
* * pop (remove the highest priority value in set): O(log(n))
* * replace (replace the highest priority value in set with a new value): O(log(n))
Expand Down
2 changes: 1 addition & 1 deletion scripts/generate/templates/Heap.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import {Panic} from "../Panic.sol";
*
* The structure is designed to perform the following operations with the corresponding complexities:
*
* * peek (get the highest priority value in set): O(1)
* * peek (get the highest priority value in the set): O(1)
* * insert (insert a value in the set): O(log(n))
* * pop (remove the highest priority value in set): O(log(n))
* * replace (replace the highest priority value in set with a new value): O(log(n))
Expand Down

0 comments on commit 5fc64a3

Please sign in to comment.