6

Do you guys also feel difficulty when you try to write algorithms in the new language? I feel like I am stupid cause I don’t event know the methods for coding the algorithms which can be easy with the language I already know

Comments
  • 1
    A long time I only used one language at work (Delphi). But now I have to use two more (C# and TypeScript). And yes, I often mix them up 😂
  • 1
    It id not about the algorithm, it's about the sintax.

    Yeah you feel slow, but it feels awesome to make it work after all the pain.
  • 3
    @mundo03 not always just the syntax.
    Eg. Translating graph algorithms from C++ into Haskell can be a pain because Haskell doesn't like cyclic data structures that much because of its design and execution model.
  • 2
    @RememberMe whatever you have to do, it is the same algorithm in paper, that is what I mean
Add Comment