38. Count and Say

38. Count and SayDifficulty: MediumTopics: StringThe count-and-say sequence is a sequence of digit strings defined by the recursive formula: countAndSay(1) = "1" countAndSay(n) is the run-length enco...
0 Read More

Stringable toInteger method

I just read a toInteger article. And it feels like a lazy contribution for me.My solution is; ⛶/** * 0x or 0X indicates heximal * 0 indicates octal * 0b or 0B indicates binary */ public functi...
0 Read More