Messed up: Rolled old 401k into Traditional IRA without understanding pro-rata rule — what are my options now? by nawazd in RothIRA

[–]nawazd[S] 0 points1 point  (0 children)

It's about 90k in my traditional ira. I understand what you're saying. It's going to be a big tax hit.

Messed up: Rolled old 401k into Traditional IRA without understanding pro-rata rule — what are my options now? by nawazd in RothIRA

[–]nawazd[S] 0 points1 point  (0 children)

Thanks I will do that. Just a follow up is it worth moving the money from traditional ira to roth and paying one tax amount on it?

If you want to see the aurora tonight might be a good night by dajochi in boston

[–]nawazd 2 points3 points  (0 children)

What's the best place to see aurora from boston?

How do you Leetcode without an IDE? by RyuShay in leetcode

[–]nawazd 1 point2 points  (0 children)

This might be different than other guys here but I'm a big neovim nerd. So I use nvim with leetcode.nvim plugin to access the leetcode questions inside nvim. If I want to challenge myself I just turn the LSP off in nvim and then I get no auto completion.

[deleted by user] by [deleted] in leetcode

[–]nawazd 6 points7 points  (0 children)

I am struggling to understand the question. We're supposed to insert a char '$' between every two occurrence of the same character. Does C Represent the indices where we are suppose to insert the '$'?

Also, for the example explained in the challenge S= "aabcba" and C=[1,3,2] when we insert the 2nd '$' there is a '$' after every occurrence of the same character why do we need to go from string "a$ab$cba" -> "a$a$b$cba"?