HNHau Nguyen Phucinhaunguyen.hashnode.dev·1d ago · 3 min readLeetCode 13 - Roman to IntegerStatement The problem gives a Roman numeral string and asks us to convert it into its corresponding integer value. Symbol Value I 1 V 5 X 10 L 50 C 100 D 500 M 1000 Most Roman nume00
HNHau Nguyen Phucinhaunguyen.hashnode.dev·2d ago · 4 min readLess Code, Less Noise: a Deep Dive into rtk and ponytailI spent some time reading through both ponytail and rtk, and what I like most is that they solve two different problems in the agent loop. They are not competing ideas. ponytail changes how the agent 00
HNHau Nguyen Phucinhaunguyen.hashnode.dev·Jun 19 · 4 min readLeetCode 9 - Palindrome NumberStatement The problem asks us to determine whether a given integer reads the same forward and backward. Such numbers are called palindromes. For example, the number 121 is a palindrome because reversi00
HNHau Nguyen Phucinhaunguyen.hashnode.dev·Jun 18 · 4 min readLeetCode 1 - Two SumStatement The problem gives us an integer array called nums and another integer called target. Our task is to find two different elements in the array whose sum equals target, then return their indice00
HNHau Nguyen Phucinhaunguyen.hashnode.dev·Jun 13 · 2 min readMobile Code InspectorWhat it does When you tap an element in your app, in CLI/agent mode, the data is returned as structured output for programmatic use. It works by injecting source-location metadata into every JSX eleme00