-
Hey, I created a solution that has O(n) space instead of O(2n) with 2 stacks:
```
class MinStack:
def __init__(self):
self.min_value = float('inf')
self.stack = list()
…
-
Would be nice to:
* list which stack is running (if any)
* get a friendly error if you attempt to start a stack when another one is already running
Could also discuss if running multiple stacks s…
-
**Is your feature request related to a problem? Please describe.**
Much how `cdk-synth` will only operate on the base stack if you don't supply a config file, and will do the leaf stack if you do: se…
-
I was automating some of https://neilmitchell.blogspot.de/2015/09/detecting-space-leaks.html and decided it'd be nice to have displays of stack traces in hspec when you get overflows. I ended up with …
-
## Abstract
```
Compiling 106 files with 0.8.11
CompilerError: Stack too deep when compiling inline assembly: Variable dataEnd is 1 slot(s) too deep inside the stack.
```
CompilerError do…
-
The call stack for the new dev mode checks starts/ends with `useSelector`. But if you have a lot of nested selectors, finding the one actually causing the warning can be a bit tedious.
Would it be …
-
[Player-prev.log](https://github.com/AzeTheGreat/ONI-Mods/files/12063045/Player-prev.log)
[save.zip](https://github.com/AzeTheGreat/ONI-Mods/files/12063047/save.zip)
It crashed shortly after som…
-
```
Too few invocations: Completely synthetic stack trace(s) that point(s) to all
affected interactions
Too many invocations: Truncate after call to matching method, replace name of
proxy class (e.g…
-
```
Too few invocations: Completely synthetic stack trace(s) that point(s) to all
affected interactions
Too many invocations: Truncate after call to matching method, replace name of
proxy class (e.g…
-
When an error is encountered (typically unexpected value in a local variable), it would be useful if the interpreter printed out the contents of the stack: invoked functions and their arguments.