Mixed experience with Cursor IDE
Cursor is a great IDE, a fork of VSCode with embedded AI. Few things that I really liked about it: 1. The next action completion is great. Adjusting the code across all the files is magnificent 2. The chat function on the side is really helpful too 3. The inference based on the name of the functions is also phenomenal. For example, all I had to do was to write the name of the functions for LCM and GCD, and it wrote all this code for me: Now what I don't like: 4. Tries to be extra smart all the time. It really disrupts the flow, especially if you need time to think about what you need to write. There is a bit of tuning that is needed there The problem was the one below, try installing and playing with it too. Find the Maximum Factor Score of Array - LeetCode 3334. Find the Maximum Factor Score of Array Medium 34 6 Add to List Share You are given an integer array nums . The factor score of an array is defined as the product of the LCM and GCD of al...