Konstantin Milyutin
Konstantin Milyutin
Hello, thank you for the plugin. I tried to preview markdown document with embedded plainuml (http://plantuml.com/) diagrams, but it shows them as simple text. Intellij has a separate plugin for...
We could add simple checks to avoid unnecessary traversal in case of unbalanced tree. For example if a node has no elements in its right subtree, it makes no sense...
When you try to pop, directly after creation, you will get Null Pointer Exception in `int v = last.pop()`, since the list of stacks is empty. ``` public int pop()...
I might be wrong, but your method isPalindromeRecurse can be simplified like this: ``` public static Wrapper isPalindromeRecursive(Node node, int length) { if (length == 0) { return new Wrapper(node,...
I'm using Grails 3.0.4, which in turn depends on `org.springframework:springloaded: -> 1.2.4.RELEASE` and during application start I get multiple exceptions like the following: ``` Caused by: java.lang.NullPointerException at org.springsource.loaded.agent.SpringLoadedPreProcessor.preProcess(SpringLoadedPreProcessor.java:217) at...