This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package demo | |
import com.fasterxml.jackson.annotation.JsonProperty | |
import com.fasterxml.jackson.databind.PropertyName | |
import com.fasterxml.jackson.databind.introspect.Annotated | |
import com.fasterxml.jackson.databind.introspect.JacksonAnnotationIntrospector | |
class CustomAnotationInspector() : | |
JacksonAnnotationIntrospector() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
╔═════════════════════════════════╦═════════════╦════════════════════╦══════════════════════╗ | |
║ Problem ║ 5 Items ║ 20 Items ║ 100 Items ║ | |
╠═════════════════════════════════╬═════════════╬════════════════════╬══════════════════════╣ | |
║ Counting Marbles ║ 5 Seconds ║ 20 seconds ║ 1 min, 40 seconds ║ | |
╠═════════════════════════════════╬═════════════╬════════════════════╬══════════════════════╣ | |
║ Sorting a list (insertion Sort) ║ 25 Seconds ║ 1 hour, 6 minutes ║ 2 hours, 46 minutes ║ | |
╠═════════════════════════════════╬═════════════╬════════════════════╬══════════════════════╣ | |
║ Knapsack problem (brute force) ║ 32 seconds ║ 12 days ║ 40.191e+18 millenia ║ | |
╚═════════════════════════════════╩═════════════╩════════════════════╩══════════════════════╝ |