Tip 1 : Solve questions from all data structures along with implemetation (how to create stack)
Tip 2 : Undertand question propery, don't jump to code. Think for edge/base cases.
Tip 3 : Read constraints
Tip 4 : have a good project and mention that on resume
Tip 1 : Mention projects along with contribution
Tip 2 : Mention coding profile links



You have given a number “1234” so you have to convert it in its word form that is “0ne thousand two hundred thirty four”.
You do not need to print anything; it has already been taken care of. Just implement the function






Input: 'list' = [1, 2, 3, 4], 'k' = 2
Output: 2 1 4 3
Explanation:
We have to reverse the given list 'k' at a time, which is 2 in this case. So we reverse the first 2 elements then the next 2 elements, giving us 2->1->4->3.
All the node values will be distinct.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?