🔔 NOTE: If you can, please buy software license to support the authors/developers!
- Go to menu Help > Enter License.
- Copy the license key below and paste it into the textbox > Click the Use License button.
| /** | |
| * @see <a href="https://leetcode.com/problems/lru-cache/">LRU Cache</a> | |
| * | |
| * Julia, work on C# version | |
| */ | |
| using System.Collections.Generic; | |
| public class LRUCache | |
| { | |
| class ListNode |
🔔 NOTE: If you can, please buy software license to support the authors/developers!