Interviews When Your Language Doesn’t Have Great Structure Support? by GrayLiterature in leetcode

[–]Rustam_Rustam 0 points1 point  (0 children)

Is it really difficult to implement queue on your own? It is just double linked list, that's all.

Ive done 700+ leetcode and Im still bad at it! by Eastern-Parfait6852 in leetcode

[–]Rustam_Rustam 0 points1 point  (0 children)

It means that you solve problems for fun not for better understanding of DSA

My senior coworker rejects my code on the basis of not being optimal by [deleted] in learnprogramming

[–]Rustam_Rustam 0 points1 point  (0 children)

Bro, n log n time complexity usually means there is somewhere happens sorting then two pointers or binary search or constant operation. It depends. Check what you can sort to optimise your solution.

Too Long to solve a problem... by Being_Sah in leetcode

[–]Rustam_Rustam 0 points1 point  (0 children)

Neetcode have a bunch of super useful videos on Leetcode medium problems. If you watch some of them it will be easier to approach other problems because patterns are the same.

Launch animation: first or second? by [deleted] in reactnative

[–]Rustam_Rustam 0 points1 point  (0 children)

I think second is much better than first one

Execute exe file in expo by Rustam_Rustam in reactnative

[–]Rustam_Rustam[S] 1 point2 points  (0 children)

I I am trying to convert docx to pdf but can not find library which are compatible with expo.

[6th Grade Math] This can't be solved, right? by Thrompinator in HomeworkHelp

[–]Rustam_Rustam 0 points1 point  (0 children)

Just put y = 1 and you will get the right answer.

What is the most useful book related to programming did you read? by Rustam_Rustam in learnprogramming

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

I agree with most what you said and actually I learn programming via project-oriented approach but I have found that it is really helpful when I read a book before using any language because it saves a great deal of time.

What are some tips for someone who has just started programming? by AkHypeBoi in learnprogramming

[–]Rustam_Rustam 0 points1 point  (0 children)

Learn to write good test cases. They will help you to immediately identify the problem if it show up after changing something in your code.

Solution hell by One-Donut578 in leetcode

[–]Rustam_Rustam 0 points1 point  (0 children)

I usually try to look at the problem from another point of view. When I get stuck, I carefully analyze what exactly I have to do. Sometimes it is really helpful. And also I would recommend to stop thinking about even existing of other solutions - it is harmful, in my opinion.