| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 7 months |
| seen | May 3 at 8:04 | |
| stats | profile views | 18 |
|
Apr 30 |
comment |
How to check equality between 2 HashMap<Number, String>? I was wondering if there is another possibility, but I agree the design complicates things. Unfortunately it is not mine so I can't change a lot. |
|
Apr 30 |
revised |
How to check equality between 2 HashMap<Number, String>? add tags |
|
Apr 30 |
comment |
How to check equality between 2 HashMap<Number, String>? 1: you can't do equals between Numbers. 2 : You should know to never do equals between 2 BigDecimal, since it is based on scale |
|
Apr 30 |
comment |
How to check equality between 2 HashMap<Number, String>? The problem is : if you have as an entry (int 42, "abcd") and (BigDecimal 42, "abdc") it should be equals |
|
Apr 30 |
comment |
How to check equality between 2 HashMap<Number, String>? same key-value pair, in my case. |
|
Apr 30 |
asked | How to check equality between 2 HashMap<Number, String>? |
|
Apr 25 |
accepted | Convert Java Number to BigDecimal : best way |
|
Apr 25 |
comment |
Convert Java Number to BigDecimal : best way Thanks for the tip ! I forgot to check this |
|
Apr 25 |
comment |
Convert Java Number to BigDecimal : best way Yep, I've noticed that. My worries are about toString() method for the Double, I was wondering if we can loose precision with this method. |
|
Apr 25 |
comment |
Convert Java Number to BigDecimal : best way Even if number is actually a Double ? |
|
Apr 25 |
asked | Convert Java Number to BigDecimal : best way |
|
Apr 10 |
answered | Choosing a 2D game engine for a simple Zelda-style adventure game |
|
Apr 2 |
comment |
Remove last repetitive characters of a string I accept your answer ! Your edit does exactly what I want, and does not look like my horrible monster code, thank you ! |
|
Apr 2 |
accepted | Remove last repetitive characters of a string |
|
Apr 2 |
comment |
Remove last repetitive characters of a string I edited my question to be clear, maybe if you have ideas you can adapt your answer |
|
Apr 2 |
comment |
Remove last repetitive characters of a string I edited my question to be clearer :) |
|
Apr 2 |
revised |
Remove last repetitive characters of a string clarifications |
|
Apr 2 |
comment |
Remove last repetitive characters of a string No, the last character is not always repeated. It can have a sequence of at least 2 characters at the end. One character is not considered as repeated. |
|
Apr 2 |
comment |
Remove last repetitive characters of a string I like the fact that is does not use regex, but If we use this regex with aaaa for example, it returns nothing. It should return aaaa. |
|
Apr 2 |
comment |
Remove last repetitive characters of a string If we use this regex with aaaa for example, it returns nothing. It should return aaaa |