Created
September 16, 2024 11:22
-
-
Save zachnicoll/040a4e839c9225e415642114e1052ca9 to your computer and use it in GitHub Desktop.
All Leetcode problems (in JSON format) as of 16th September, 2024.
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"data": { | |
"problemsetQuestionList": { | |
"total": 3292, | |
"questions": [ | |
{ | |
"acRate": 53.71467174343617, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "1", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Two Sum", | |
"titleSlug": "two-sum", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 44.059451590842826, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "2", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Add Two Numbers", | |
"titleSlug": "add-two-numbers", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 35.42078680469752, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "3", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Longest Substring Without Repeating Characters", | |
"titleSlug": "longest-substring-without-repeating-characters", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Sliding Window", | |
"id": "VG9waWNUYWdOb2RlOjU1ODIx", | |
"slug": "sliding-window" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 41.41155102900937, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "4", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Median of Two Sorted Arrays", | |
"titleSlug": "median-of-two-sorted-arrays", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Divide and Conquer", | |
"id": "VG9waWNUYWdOb2RlOjEy", | |
"slug": "divide-and-conquer" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 34.420432977075386, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "5", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Longest Palindromic Substring", | |
"titleSlug": "longest-palindromic-substring", | |
"topicTags": [ | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 49.242061464046714, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "6", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Zigzag Conversion", | |
"titleSlug": "zigzag-conversion", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 29.137297393162797, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "7", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Reverse Integer", | |
"titleSlug": "reverse-integer", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 17.89634800554322, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "8", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "String to Integer (atoi)", | |
"titleSlug": "string-to-integer-atoi", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 57.47287935747687, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "9", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Palindrome Number", | |
"titleSlug": "palindrome-number", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 28.37370126541655, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "10", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Regular Expression Matching", | |
"titleSlug": "regular-expression-matching", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 56.136269348728895, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "11", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Container With Most Water", | |
"titleSlug": "container-with-most-water", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 66.24044308430162, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "12", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Integer to Roman", | |
"titleSlug": "integer-to-roman", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 62.61972908901983, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "13", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Roman to Integer", | |
"titleSlug": "roman-to-integer", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 43.76621300887985, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "14", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Longest Common Prefix", | |
"titleSlug": "longest-common-prefix", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Trie", | |
"id": "VG9waWNUYWdOb2RlOjI3", | |
"slug": "trie" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 35.326613190635584, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "15", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "3Sum", | |
"titleSlug": "3sum", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 46.06482554795551, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "16", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "3Sum Closest", | |
"titleSlug": "3sum-closest", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 61.681671929067015, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "17", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Letter Combinations of a Phone Number", | |
"titleSlug": "letter-combinations-of-a-phone-number", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 36.720082241926015, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "18", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "4Sum", | |
"titleSlug": "4sum", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 46.67762521269884, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "19", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Remove Nth Node From End of List", | |
"titleSlug": "remove-nth-node-from-end-of-list", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 41.020917899074, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "20", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Valid Parentheses", | |
"titleSlug": "valid-parentheses", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 65.23346247122079, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "21", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Merge Two Sorted Lists", | |
"titleSlug": "merge-two-sorted-lists", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 75.47402208200697, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "22", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Generate Parentheses", | |
"titleSlug": "generate-parentheses", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 54.08576122227446, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "23", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Merge k Sorted Lists", | |
"titleSlug": "merge-k-sorted-lists", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Divide and Conquer", | |
"id": "VG9waWNUYWdOb2RlOjEy", | |
"slug": "divide-and-conquer" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
}, | |
{ | |
"name": "Merge Sort", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUx", | |
"slug": "merge-sort" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 65.26460643835227, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "24", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Swap Nodes in Pairs", | |
"titleSlug": "swap-nodes-in-pairs", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 60.367754182519995, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "25", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Reverse Nodes in k-Group", | |
"titleSlug": "reverse-nodes-in-k-group", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 57.5756531725524, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "26", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Remove Duplicates from Sorted Array", | |
"titleSlug": "remove-duplicates-from-sorted-array", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 58.15301129672067, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "27", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Remove Element", | |
"titleSlug": "remove-element", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 43.40240732375143, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "28", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Find the Index of the First Occurrence in a String", | |
"titleSlug": "find-the-index-of-the-first-occurrence-in-a-string", | |
"topicTags": [ | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "String Matching", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUy", | |
"slug": "string-matching" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 17.758416705405946, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "29", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Divide Two Integers", | |
"titleSlug": "divide-two-integers", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 32.545885419199756, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "30", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Substring with Concatenation of All Words", | |
"titleSlug": "substring-with-concatenation-of-all-words", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Sliding Window", | |
"id": "VG9waWNUYWdOb2RlOjU1ODIx", | |
"slug": "sliding-window" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 41.052294841360826, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "31", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Next Permutation", | |
"titleSlug": "next-permutation", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 34.73624667737432, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "32", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Longest Valid Parentheses", | |
"titleSlug": "longest-valid-parentheses", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 41.49288945818089, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "33", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Search in Rotated Sorted Array", | |
"titleSlug": "search-in-rotated-sorted-array", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 45.17117680619734, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "34", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Find First and Last Position of Element in Sorted Array", | |
"titleSlug": "find-first-and-last-position-of-element-in-sorted-array", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 47.11523846327009, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "35", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Search Insert Position", | |
"titleSlug": "search-insert-position", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 60.56872581421909, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "36", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Valid Sudoku", | |
"titleSlug": "valid-sudoku", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 62.78967792006209, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "37", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Sudoku Solver", | |
"titleSlug": "sudoku-solver", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 56.38062287283625, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "38", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Count and Say", | |
"titleSlug": "count-and-say", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 72.69347546594692, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "39", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Combination Sum", | |
"titleSlug": "combination-sum", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 56.41790915886021, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "40", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Combination Sum II", | |
"titleSlug": "combination-sum-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 39.94771781484358, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "41", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "First Missing Positive", | |
"titleSlug": "first-missing-positive", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 63.07869575027474, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "42", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Trapping Rain Water", | |
"titleSlug": "trapping-rain-water", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Monotonic Stack", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU0", | |
"slug": "monotonic-stack" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 40.94976973497108, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "43", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Multiply Strings", | |
"titleSlug": "multiply-strings", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Simulation", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU1", | |
"slug": "simulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 28.60054360353084, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "44", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Wildcard Matching", | |
"titleSlug": "wildcard-matching", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 40.71220890064769, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "45", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Jump Game II", | |
"titleSlug": "jump-game-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 79.21688937016405, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "46", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Permutations", | |
"titleSlug": "permutations", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 60.01598379657873, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "47", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Permutations II", | |
"titleSlug": "permutations-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 75.84646055168047, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "48", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Rotate Image", | |
"titleSlug": "rotate-image", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 69.37506651456637, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "49", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Group Anagrams", | |
"titleSlug": "group-anagrams", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 35.520261735896106, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "50", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Pow(x, n)", | |
"titleSlug": "powx-n", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 69.94783590679089, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "51", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "N-Queens", | |
"titleSlug": "n-queens", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 74.92254816104274, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "52", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "N-Queens II", | |
"titleSlug": "n-queens-ii", | |
"topicTags": [ | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 51.15595264328696, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "53", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Maximum Subarray", | |
"titleSlug": "maximum-subarray", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Divide and Conquer", | |
"id": "VG9waWNUYWdOb2RlOjEy", | |
"slug": "divide-and-conquer" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 51.24996085751263, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "54", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Spiral Matrix", | |
"titleSlug": "spiral-matrix", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
}, | |
{ | |
"name": "Simulation", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU1", | |
"slug": "simulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 38.77171627873048, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "55", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Jump Game", | |
"titleSlug": "jump-game", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 47.937769517230585, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "56", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Merge Intervals", | |
"titleSlug": "merge-intervals", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 42.16025069618635, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "57", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Insert Interval", | |
"titleSlug": "insert-interval", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 53.615002076065124, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "58", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Length of Last Word", | |
"titleSlug": "length-of-last-word", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 72.11356163773608, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "59", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Spiral Matrix II", | |
"titleSlug": "spiral-matrix-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
}, | |
{ | |
"name": "Simulation", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU1", | |
"slug": "simulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 48.06587505680936, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "60", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Permutation Sequence", | |
"titleSlug": "permutation-sequence", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 38.615362746343095, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "61", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Rotate List", | |
"titleSlug": "rotate-list", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 64.80848617080719, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "62", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Unique Paths", | |
"titleSlug": "unique-paths", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Combinatorics", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU2", | |
"slug": "combinatorics" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 42.17706765387065, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "63", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Unique Paths II", | |
"titleSlug": "unique-paths-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 64.9319688804753, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "64", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Minimum Path Sum", | |
"titleSlug": "minimum-path-sum", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 20.331864861404654, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "65", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Valid Number", | |
"titleSlug": "valid-number", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 46.12612963248491, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "66", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Plus One", | |
"titleSlug": "plus-one", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 54.30530296449757, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "67", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Add Binary", | |
"titleSlug": "add-binary", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
}, | |
{ | |
"name": "Simulation", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU1", | |
"slug": "simulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 45.0677485012249, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "68", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Text Justification", | |
"titleSlug": "text-justification", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Simulation", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU1", | |
"slug": "simulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 39.345330880758425, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "69", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Sqrt(x)", | |
"titleSlug": "sqrtx", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 53.11861533140553, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "70", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Climbing Stairs", | |
"titleSlug": "climbing-stairs", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Memoization", | |
"id": "VG9waWNUYWdOb2RlOjMz", | |
"slug": "memoization" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 44.11834382514026, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "71", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Simplify Path", | |
"titleSlug": "simplify-path", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 57.3157248010404, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "72", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Edit Distance", | |
"titleSlug": "edit-distance", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 57.38122649199834, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "73", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Set Matrix Zeroes", | |
"titleSlug": "set-matrix-zeroes", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 51.00234059292268, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "74", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Search a 2D Matrix", | |
"titleSlug": "search-a-2d-matrix", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 64.95906369867512, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "75", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Sort Colors", | |
"titleSlug": "sort-colors", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 43.674059051758576, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "76", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Minimum Window Substring", | |
"titleSlug": "minimum-window-substring", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Sliding Window", | |
"id": "VG9waWNUYWdOb2RlOjU1ODIx", | |
"slug": "sliding-window" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 71.26003254493295, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "77", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Combinations", | |
"titleSlug": "combinations", | |
"topicTags": [ | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 79.2033957779499, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "78", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Subsets", | |
"titleSlug": "subsets", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 43.58826455655284, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "79", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Word Search", | |
"titleSlug": "word-search", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 60.11582979310287, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "80", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Remove Duplicates from Sorted Array II", | |
"titleSlug": "remove-duplicates-from-sorted-array-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 38.13491436774986, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "81", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Search in Rotated Sorted Array II", | |
"titleSlug": "search-in-rotated-sorted-array-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 48.27908186899162, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "82", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Remove Duplicates from Sorted List II", | |
"titleSlug": "remove-duplicates-from-sorted-list-ii", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 53.38555104336519, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "83", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Remove Duplicates from Sorted List", | |
"titleSlug": "remove-duplicates-from-sorted-list", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 45.46497798064868, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "84", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Largest Rectangle in Histogram", | |
"titleSlug": "largest-rectangle-in-histogram", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Monotonic Stack", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU0", | |
"slug": "monotonic-stack" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 51.65023172331179, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "85", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Maximal Rectangle", | |
"titleSlug": "maximal-rectangle", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
}, | |
{ | |
"name": "Monotonic Stack", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU0", | |
"slug": "monotonic-stack" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 57.189668943189446, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "86", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Partition List", | |
"titleSlug": "partition-list", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 40.72555205047318, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "87", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Scramble String", | |
"titleSlug": "scramble-string", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 50.981968163108846, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "88", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Merge Sorted Array", | |
"titleSlug": "merge-sorted-array", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 60.05034187968597, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "89", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Gray Code", | |
"titleSlug": "gray-code", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 58.07433935149808, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "90", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Subsets II", | |
"titleSlug": "subsets-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 35.44241107617356, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "91", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Decode Ways", | |
"titleSlug": "decode-ways", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 48.30750173518881, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "92", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Reverse Linked List II", | |
"titleSlug": "reverse-linked-list-ii", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 51.01777903188136, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "93", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Restore IP Addresses", | |
"titleSlug": "restore-ip-addresses", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 77.04423440923924, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "94", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Binary Tree Inorder Traversal", | |
"titleSlug": "binary-tree-inorder-traversal", | |
"topicTags": [ | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 58.64043482926513, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "95", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Unique Binary Search Trees II", | |
"titleSlug": "unique-binary-search-trees-ii", | |
"topicTags": [ | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Binary Search Tree", | |
"id": "VG9waWNUYWdOb2RlOjMw", | |
"slug": "binary-search-tree" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 61.54899746837241, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "96", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Unique Binary Search Trees", | |
"titleSlug": "unique-binary-search-trees", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Binary Search Tree", | |
"id": "VG9waWNUYWdOb2RlOjMw", | |
"slug": "binary-search-tree" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 40.57689500528247, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "97", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Interleaving String", | |
"titleSlug": "interleaving-string", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 33.40355332685074, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "98", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Validate Binary Search Tree", | |
"titleSlug": "validate-binary-search-tree", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Search Tree", | |
"id": "VG9waWNUYWdOb2RlOjMw", | |
"slug": "binary-search-tree" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 54.24199668836231, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "99", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Recover Binary Search Tree", | |
"titleSlug": "recover-binary-search-tree", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Search Tree", | |
"id": "VG9waWNUYWdOb2RlOjMw", | |
"slug": "binary-search-tree" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 63.27148254276894, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "100", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Same Tree", | |
"titleSlug": "same-tree", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 57.51519558774303, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "101", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Symmetric Tree", | |
"titleSlug": "symmetric-tree", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 68.46670645807848, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "102", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Binary Tree Level Order Traversal", | |
"titleSlug": "binary-tree-level-order-traversal", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 59.97119018485905, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "103", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Binary Tree Zigzag Level Order Traversal", | |
"titleSlug": "binary-tree-zigzag-level-order-traversal", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 76.08005706105901, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "104", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Maximum Depth of Binary Tree", | |
"titleSlug": "maximum-depth-of-binary-tree", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 64.95917866880684, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "105", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Construct Binary Tree from Preorder and Inorder Traversal", | |
"titleSlug": "construct-binary-tree-from-preorder-and-inorder-traversal", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Divide and Conquer", | |
"id": "VG9waWNUYWdOb2RlOjEy", | |
"slug": "divide-and-conquer" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 64.23211976289598, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "106", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Construct Binary Tree from Inorder and Postorder Traversal", | |
"titleSlug": "construct-binary-tree-from-inorder-and-postorder-traversal", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Divide and Conquer", | |
"id": "VG9waWNUYWdOb2RlOjEy", | |
"slug": "divide-and-conquer" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 64.28210482156308, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "107", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Binary Tree Level Order Traversal II", | |
"titleSlug": "binary-tree-level-order-traversal-ii", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 72.5866872010677, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "108", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Convert Sorted Array to Binary Search Tree", | |
"titleSlug": "convert-sorted-array-to-binary-search-tree", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Divide and Conquer", | |
"id": "VG9waWNUYWdOb2RlOjEy", | |
"slug": "divide-and-conquer" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Binary Search Tree", | |
"id": "VG9waWNUYWdOb2RlOjMw", | |
"slug": "binary-search-tree" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 62.7210237442651, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "109", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Convert Sorted List to Binary Search Tree", | |
"titleSlug": "convert-sorted-list-to-binary-search-tree", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Divide and Conquer", | |
"id": "VG9waWNUYWdOb2RlOjEy", | |
"slug": "divide-and-conquer" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Binary Search Tree", | |
"id": "VG9waWNUYWdOb2RlOjMw", | |
"slug": "binary-search-tree" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 53.3615313875788, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "110", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Balanced Binary Tree", | |
"titleSlug": "balanced-binary-tree", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 48.915340142735296, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "111", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Minimum Depth of Binary Tree", | |
"titleSlug": "minimum-depth-of-binary-tree", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 51.33211389489618, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "112", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Path Sum", | |
"titleSlug": "path-sum", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 59.15891751092567, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "113", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Path Sum II", | |
"titleSlug": "path-sum-ii", | |
"topicTags": [ | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 66.32523166043065, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "114", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Flatten Binary Tree to Linked List", | |
"titleSlug": "flatten-binary-tree-to-linked-list", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 48.25324869297456, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "115", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Distinct Subsequences", | |
"titleSlug": "distinct-subsequences", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 63.61122491379325, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "116", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Populating Next Right Pointers in Each Node", | |
"titleSlug": "populating-next-right-pointers-in-each-node", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 53.530126106297615, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "117", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Populating Next Right Pointers in Each Node II", | |
"titleSlug": "populating-next-right-pointers-in-each-node-ii", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 75.35677095095686, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "118", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Pascal's Triangle", | |
"titleSlug": "pascals-triangle", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 64.65954286195735, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "119", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Pascal's Triangle II", | |
"titleSlug": "pascals-triangle-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 57.67365373831067, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "120", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Triangle", | |
"titleSlug": "triangle", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 54.131083363589006, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "121", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Best Time to Buy and Sell Stock", | |
"titleSlug": "best-time-to-buy-and-sell-stock", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 67.62112688690125, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "122", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Best Time to Buy and Sell Stock II", | |
"titleSlug": "best-time-to-buy-and-sell-stock-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 49.15903355954785, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "123", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Best Time to Buy and Sell Stock III", | |
"titleSlug": "best-time-to-buy-and-sell-stock-iii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 40.392710454540406, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "124", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Binary Tree Maximum Path Sum", | |
"titleSlug": "binary-tree-maximum-path-sum", | |
"topicTags": [ | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 48.695734926490815, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "125", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Valid Palindrome", | |
"titleSlug": "valid-palindrome", | |
"topicTags": [ | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 27.1603566109483, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "126", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Word Ladder II", | |
"titleSlug": "word-ladder-ii", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 40.35270455338527, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "127", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Word Ladder", | |
"titleSlug": "word-ladder", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 47.44398033782393, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "128", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Longest Consecutive Sequence", | |
"titleSlug": "longest-consecutive-sequence", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Union Find", | |
"id": "VG9waWNUYWdOb2RlOjIz", | |
"slug": "union-find" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 66.66539426173652, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "129", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Sum Root to Leaf Numbers", | |
"titleSlug": "sum-root-to-leaf-numbers", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 40.724640083545374, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "130", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Surrounded Regions", | |
"titleSlug": "surrounded-regions", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Union Find", | |
"id": "VG9waWNUYWdOb2RlOjIz", | |
"slug": "union-find" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 70.25605375801308, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "131", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Palindrome Partitioning", | |
"titleSlug": "palindrome-partitioning", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 34.326472330560854, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "132", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Palindrome Partitioning II", | |
"titleSlug": "palindrome-partitioning-ii", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 59.01813699594999, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "133", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Clone Graph", | |
"titleSlug": "clone-graph", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Graph", | |
"id": "VG9waWNUYWdOb2RlOjI0", | |
"slug": "graph" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 45.596328785255054, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "134", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Gas Station", | |
"titleSlug": "gas-station", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 43.837781130065686, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "135", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Candy", | |
"titleSlug": "candy", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 74.06459486196928, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "136", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Single Number", | |
"titleSlug": "single-number", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 63.745852756815516, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "137", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Single Number II", | |
"titleSlug": "single-number-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 57.5906981178167, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "138", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Copy List with Random Pointer", | |
"titleSlug": "copy-list-with-random-pointer", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 47.21978417900463, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "139", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Word Break", | |
"titleSlug": "word-break", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Trie", | |
"id": "VG9waWNUYWdOb2RlOjI3", | |
"slug": "trie" | |
}, | |
{ | |
"name": "Memoization", | |
"id": "VG9waWNUYWdOb2RlOjMz", | |
"slug": "memoization" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 51.69690222315671, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "140", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Word Break II", | |
"titleSlug": "word-break-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
}, | |
{ | |
"name": "Trie", | |
"id": "VG9waWNUYWdOb2RlOjI3", | |
"slug": "trie" | |
}, | |
{ | |
"name": "Memoization", | |
"id": "VG9waWNUYWdOb2RlOjMz", | |
"slug": "memoization" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 51.09771796993634, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "141", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Linked List Cycle", | |
"titleSlug": "linked-list-cycle", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 52.58547397769169, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "142", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Linked List Cycle II", | |
"titleSlug": "linked-list-cycle-ii", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 60.062735799541834, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "143", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Reorder List", | |
"titleSlug": "reorder-list", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 70.79554447633957, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "144", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Binary Tree Preorder Traversal", | |
"titleSlug": "binary-tree-preorder-traversal", | |
"topicTags": [ | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 73.4114793223522, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "145", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Binary Tree Postorder Traversal", | |
"titleSlug": "binary-tree-postorder-traversal", | |
"topicTags": [ | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 43.23915786130414, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "146", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "LRU Cache", | |
"titleSlug": "lru-cache", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Doubly-Linked List", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU4", | |
"slug": "doubly-linked-list" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 54.54479019396764, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "147", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Insertion Sort List", | |
"titleSlug": "insertion-sort-list", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 59.46406176369698, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "148", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Sort List", | |
"titleSlug": "sort-list", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Divide and Conquer", | |
"id": "VG9waWNUYWdOb2RlOjEy", | |
"slug": "divide-and-conquer" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Merge Sort", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUx", | |
"slug": "merge-sort" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 27.50224281206891, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "149", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Max Points on a Line", | |
"titleSlug": "max-points-on-a-line", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Geometry", | |
"id": "VG9waWNUYWdOb2RlOjM4", | |
"slug": "geometry" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 52.67960404115066, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "150", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Evaluate Reverse Polish Notation", | |
"titleSlug": "evaluate-reverse-polish-notation", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 46.14784030294026, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "151", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Reverse Words in a String", | |
"titleSlug": "reverse-words-in-a-string", | |
"topicTags": [ | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 33.90100989626189, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "152", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Maximum Product Subarray", | |
"titleSlug": "maximum-product-subarray", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 51.300909301251785, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "153", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Find Minimum in Rotated Sorted Array", | |
"titleSlug": "find-minimum-in-rotated-sorted-array", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 43.746855227096376, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "154", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Find Minimum in Rotated Sorted Array II", | |
"titleSlug": "find-minimum-in-rotated-sorted-array-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 54.96638226373882, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "155", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Min Stack", | |
"titleSlug": "min-stack", | |
"topicTags": [ | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 63.21486581492884, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "156", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Binary Tree Upside Down", | |
"titleSlug": "binary-tree-upside-down", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 41.767611872743615, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "157", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Read N Characters Given Read4", | |
"titleSlug": "read-n-characters-given-read4", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Simulation", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU1", | |
"slug": "simulation" | |
}, | |
{ | |
"name": "Interactive", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU5", | |
"slug": "interactive" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 42.52013953371647, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "158", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Read N Characters Given read4 II - Call Multiple Times", | |
"titleSlug": "read-n-characters-given-read4-ii-call-multiple-times", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Simulation", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU1", | |
"slug": "simulation" | |
}, | |
{ | |
"name": "Interactive", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU5", | |
"slug": "interactive" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 55.683833065663094, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "159", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Longest Substring with At Most Two Distinct Characters", | |
"titleSlug": "longest-substring-with-at-most-two-distinct-characters", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Sliding Window", | |
"id": "VG9waWNUYWdOb2RlOjU1ODIx", | |
"slug": "sliding-window" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 58.815086890727166, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "160", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Intersection of Two Linked Lists", | |
"titleSlug": "intersection-of-two-linked-lists", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 34.39010483484301, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "161", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "One Edit Distance", | |
"titleSlug": "one-edit-distance", | |
"topicTags": [ | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 46.007328852764154, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "162", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Find Peak Element", | |
"titleSlug": "find-peak-element", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 34.13509176761307, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "163", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Missing Ranges", | |
"titleSlug": "missing-ranges", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 47.1943496424562, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "164", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Maximum Gap", | |
"titleSlug": "maximum-gap", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Bucket Sort", | |
"id": "VG9waWNUYWdOb2RlOjYxMDYw", | |
"slug": "bucket-sort" | |
}, | |
{ | |
"name": "Radix Sort", | |
"id": "VG9waWNUYWdOb2RlOjYxMDYx", | |
"slug": "radix-sort" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 41.32225995767488, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "165", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Compare Version Numbers", | |
"titleSlug": "compare-version-numbers", | |
"topicTags": [ | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 25.370591242119612, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "166", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Fraction to Recurring Decimal", | |
"titleSlug": "fraction-to-recurring-decimal", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 62.069153277686915, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "167", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Two Sum II - Input Array Is Sorted", | |
"titleSlug": "two-sum-ii-input-array-is-sorted", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 41.60986382258985, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "168", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Excel Sheet Column Title", | |
"titleSlug": "excel-sheet-column-title", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 65.20590009665513, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "169", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Majority Element", | |
"titleSlug": "majority-element", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Divide and Conquer", | |
"id": "VG9waWNUYWdOb2RlOjEy", | |
"slug": "divide-and-conquer" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Counting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDYy", | |
"slug": "counting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 38.299749079477394, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "170", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Two Sum III - Data structure design", | |
"titleSlug": "two-sum-iii-data-structure-design", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Data Stream", | |
"id": "VG9waWNUYWdOb2RlOjYxMDYz", | |
"slug": "data-stream" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 64.47790021623634, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "171", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Excel Sheet Column Number", | |
"titleSlug": "excel-sheet-column-number", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 43.816410036116594, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "172", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Factorial Trailing Zeroes", | |
"titleSlug": "factorial-trailing-zeroes", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 73.05951824083778, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "173", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Binary Search Tree Iterator", | |
"titleSlug": "binary-search-tree-iterator", | |
"topicTags": [ | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Binary Search Tree", | |
"id": "VG9waWNUYWdOb2RlOjMw", | |
"slug": "binary-search-tree" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
}, | |
{ | |
"name": "Iterator", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY0", | |
"slug": "iterator" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 38.469334876520506, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "174", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Dungeon Game", | |
"titleSlug": "dungeon-game", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 76.71213945174497, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "175", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Combine Two Tables", | |
"titleSlug": "combine-two-tables", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 41.573256030797275, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "176", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Second Highest Salary", | |
"titleSlug": "second-highest-salary", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 37.95384107728729, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "177", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Nth Highest Salary", | |
"titleSlug": "nth-highest-salary", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 63.36934066529744, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "178", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Rank Scores", | |
"titleSlug": "rank-scores", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 36.93381692643786, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "179", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Largest Number", | |
"titleSlug": "largest-number", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 43.95950506186727, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "180", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Consecutive Numbers", | |
"titleSlug": "consecutive-numbers", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 70.20655524396173, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "181", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Employees Earning More Than Their Managers", | |
"titleSlug": "employees-earning-more-than-their-managers", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 71.5297086752556, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "182", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Duplicate Emails", | |
"titleSlug": "duplicate-emails", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 69.61509659545611, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "183", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Customers Who Never Order", | |
"titleSlug": "customers-who-never-order", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 52.66859308264578, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "184", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Department Highest Salary", | |
"titleSlug": "department-highest-salary", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 54.95236909739256, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "185", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Department Top Three Salaries", | |
"titleSlug": "department-top-three-salaries", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 55.15520733043392, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "186", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Reverse Words in a String II", | |
"titleSlug": "reverse-words-in-a-string-ii", | |
"topicTags": [ | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 49.62255626183207, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "187", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Repeated DNA Sequences", | |
"titleSlug": "repeated-dna-sequences", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
}, | |
{ | |
"name": "Sliding Window", | |
"id": "VG9waWNUYWdOb2RlOjU1ODIx", | |
"slug": "sliding-window" | |
}, | |
{ | |
"name": "Rolling Hash", | |
"id": "VG9waWNUYWdOb2RlOjU2NTk4", | |
"slug": "rolling-hash" | |
}, | |
{ | |
"name": "Hash Function", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY1", | |
"slug": "hash-function" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 44.50322844610386, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "188", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Best Time to Buy and Sell Stock IV", | |
"titleSlug": "best-time-to-buy-and-sell-stock-iv", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 41.52878971868043, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "189", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Rotate Array", | |
"titleSlug": "rotate-array", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 60.180746314141295, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "190", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Reverse Bits", | |
"titleSlug": "reverse-bits", | |
"topicTags": [ | |
{ | |
"name": "Divide and Conquer", | |
"id": "VG9waWNUYWdOb2RlOjEy", | |
"slug": "divide-and-conquer" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 72.39529080953628, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "191", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Number of 1 Bits", | |
"titleSlug": "number-of-1-bits", | |
"topicTags": [ | |
{ | |
"name": "Divide and Conquer", | |
"id": "VG9waWNUYWdOb2RlOjEy", | |
"slug": "divide-and-conquer" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 26.018366472279343, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "192", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Word Frequency", | |
"titleSlug": "word-frequency", | |
"topicTags": [ | |
{ | |
"name": "Shell", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ0", | |
"slug": "shell" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 26.323241059422188, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "193", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Valid Phone Numbers", | |
"titleSlug": "valid-phone-numbers", | |
"topicTags": [ | |
{ | |
"name": "Shell", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ0", | |
"slug": "shell" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 26.8064241463343, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "194", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Transpose File", | |
"titleSlug": "transpose-file", | |
"topicTags": [ | |
{ | |
"name": "Shell", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ0", | |
"slug": "shell" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 33.63058572772908, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "195", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Tenth Line", | |
"titleSlug": "tenth-line", | |
"topicTags": [ | |
{ | |
"name": "Shell", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ0", | |
"slug": "shell" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 62.86584484613614, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "196", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Delete Duplicate Emails", | |
"titleSlug": "delete-duplicate-emails", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 48.79760717354773, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "197", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Rising Temperature", | |
"titleSlug": "rising-temperature", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 51.47993222436856, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "198", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "House Robber", | |
"titleSlug": "house-robber", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 63.82922139295375, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "199", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Binary Tree Right Side View", | |
"titleSlug": "binary-tree-right-side-view", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 60.3756983782365, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "200", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Number of Islands", | |
"titleSlug": "number-of-islands", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Union Find", | |
"id": "VG9waWNUYWdOb2RlOjIz", | |
"slug": "union-find" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 47.21879046103478, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "201", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Bitwise AND of Numbers Range", | |
"titleSlug": "bitwise-and-of-numbers-range", | |
"topicTags": [ | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 56.785140257122, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "202", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Happy Number", | |
"titleSlug": "happy-number", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 49.88103187022862, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "203", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Remove Linked List Elements", | |
"titleSlug": "remove-linked-list-elements", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 33.975310591126345, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "204", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Count Primes", | |
"titleSlug": "count-primes", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Enumeration", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY2", | |
"slug": "enumeration" | |
}, | |
{ | |
"name": "Number Theory", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY3", | |
"slug": "number-theory" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 45.70805252022609, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "205", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Isomorphic Strings", | |
"titleSlug": "isomorphic-strings", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 77.60813354116044, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "206", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Reverse Linked List", | |
"titleSlug": "reverse-linked-list", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 47.47004655294551, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "207", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Course Schedule", | |
"titleSlug": "course-schedule", | |
"topicTags": [ | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Graph", | |
"id": "VG9waWNUYWdOb2RlOjI0", | |
"slug": "graph" | |
}, | |
{ | |
"name": "Topological Sort", | |
"id": "VG9waWNUYWdOb2RlOjI2", | |
"slug": "topological-sort" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 66.2556461258168, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "208", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Implement Trie (Prefix Tree)", | |
"titleSlug": "implement-trie-prefix-tree", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Trie", | |
"id": "VG9waWNUYWdOb2RlOjI3", | |
"slug": "trie" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 47.833919638746295, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "209", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Minimum Size Subarray Sum", | |
"titleSlug": "minimum-size-subarray-sum", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Sliding Window", | |
"id": "VG9waWNUYWdOb2RlOjU1ODIx", | |
"slug": "sliding-window" | |
}, | |
{ | |
"name": "Prefix Sum", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY4", | |
"slug": "prefix-sum" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 51.45968980715481, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "210", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Course Schedule II", | |
"titleSlug": "course-schedule-ii", | |
"topicTags": [ | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Graph", | |
"id": "VG9waWNUYWdOb2RlOjI0", | |
"slug": "graph" | |
}, | |
{ | |
"name": "Topological Sort", | |
"id": "VG9waWNUYWdOb2RlOjI2", | |
"slug": "topological-sort" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 45.87567596074661, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "211", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Design Add and Search Words Data Structure", | |
"titleSlug": "design-add-and-search-words-data-structure", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Trie", | |
"id": "VG9waWNUYWdOb2RlOjI3", | |
"slug": "trie" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 36.578465207639226, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "212", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Word Search II", | |
"titleSlug": "word-search-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
}, | |
{ | |
"name": "Trie", | |
"id": "VG9waWNUYWdOb2RlOjI3", | |
"slug": "trie" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 42.52818493433698, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "213", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "House Robber II", | |
"titleSlug": "house-robber-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 34.038694614562154, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "214", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Shortest Palindrome", | |
"titleSlug": "shortest-palindrome", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Rolling Hash", | |
"id": "VG9waWNUYWdOb2RlOjU2NTk4", | |
"slug": "rolling-hash" | |
}, | |
{ | |
"name": "String Matching", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUy", | |
"slug": "string-matching" | |
}, | |
{ | |
"name": "Hash Function", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY1", | |
"slug": "hash-function" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 67.10732913522233, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "215", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Kth Largest Element in an Array", | |
"titleSlug": "kth-largest-element-in-an-array", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Divide and Conquer", | |
"id": "VG9waWNUYWdOb2RlOjEy", | |
"slug": "divide-and-conquer" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
}, | |
{ | |
"name": "Quickselect", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY5", | |
"slug": "quickselect" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 70.53189515542651, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "216", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Combination Sum III", | |
"titleSlug": "combination-sum-iii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 62.218954615483376, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "217", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Contains Duplicate", | |
"titleSlug": "contains-duplicate", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 43.05131132798572, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "218", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "The Skyline Problem", | |
"titleSlug": "the-skyline-problem", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Divide and Conquer", | |
"id": "VG9waWNUYWdOb2RlOjEy", | |
"slug": "divide-and-conquer" | |
}, | |
{ | |
"name": "Binary Indexed Tree", | |
"id": "VG9waWNUYWdOb2RlOjI4", | |
"slug": "binary-indexed-tree" | |
}, | |
{ | |
"name": "Segment Tree", | |
"id": "VG9waWNUYWdOb2RlOjI5", | |
"slug": "segment-tree" | |
}, | |
{ | |
"name": "Line Sweep", | |
"id": "VG9waWNUYWdOb2RlOjU2MTE5", | |
"slug": "line-sweep" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
}, | |
{ | |
"name": "Ordered Set", | |
"id": "VG9waWNUYWdOb2RlOjYxMDcw", | |
"slug": "ordered-set" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 46.40701914733156, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "219", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Contains Duplicate II", | |
"titleSlug": "contains-duplicate-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Sliding Window", | |
"id": "VG9waWNUYWdOb2RlOjU1ODIx", | |
"slug": "sliding-window" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 22.986432989109762, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "220", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Contains Duplicate III", | |
"titleSlug": "contains-duplicate-iii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Sliding Window", | |
"id": "VG9waWNUYWdOb2RlOjU1ODIx", | |
"slug": "sliding-window" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Bucket Sort", | |
"id": "VG9waWNUYWdOb2RlOjYxMDYw", | |
"slug": "bucket-sort" | |
}, | |
{ | |
"name": "Ordered Set", | |
"id": "VG9waWNUYWdOb2RlOjYxMDcw", | |
"slug": "ordered-set" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 47.28077701441511, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "221", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Maximal Square", | |
"titleSlug": "maximal-square", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 67.16018973343905, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "222", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Count Complete Tree Nodes", | |
"titleSlug": "count-complete-tree-nodes", | |
"topicTags": [ | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 46.625208585131986, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "223", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Rectangle Area", | |
"titleSlug": "rectangle-area", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Geometry", | |
"id": "VG9waWNUYWdOb2RlOjM4", | |
"slug": "geometry" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 43.91147837341643, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "224", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Basic Calculator", | |
"titleSlug": "basic-calculator", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 65.1835498422938, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "225", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Implement Stack using Queues", | |
"titleSlug": "implement-stack-using-queues", | |
"topicTags": [ | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Queue", | |
"id": "VG9waWNUYWdOb2RlOjM0", | |
"slug": "queue" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 77.7985692452859, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "226", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Invert Binary Tree", | |
"titleSlug": "invert-binary-tree", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 44.19098170999359, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "227", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Basic Calculator II", | |
"titleSlug": "basic-calculator-ii", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 51.559878281147796, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "228", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Summary Ranges", | |
"titleSlug": "summary-ranges", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 52.61087913061054, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "229", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Majority Element II", | |
"titleSlug": "majority-element-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Counting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDYy", | |
"slug": "counting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 73.6343903399433, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "230", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Kth Smallest Element in a BST", | |
"titleSlug": "kth-smallest-element-in-a-bst", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Search Tree", | |
"id": "VG9waWNUYWdOb2RlOjMw", | |
"slug": "binary-search-tree" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 47.9634442503515, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "231", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Power of Two", | |
"titleSlug": "power-of-two", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 66.96904220227846, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "232", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Implement Queue using Stacks", | |
"titleSlug": "implement-queue-using-stacks", | |
"topicTags": [ | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Queue", | |
"id": "VG9waWNUYWdOb2RlOjM0", | |
"slug": "queue" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 34.90346922260407, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "233", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Number of Digit One", | |
"titleSlug": "number-of-digit-one", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 54.1133653411462, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "234", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Palindrome Linked List", | |
"titleSlug": "palindrome-linked-list", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 66.03292133589869, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "235", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Lowest Common Ancestor of a Binary Search Tree", | |
"titleSlug": "lowest-common-ancestor-of-a-binary-search-tree", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Search Tree", | |
"id": "VG9waWNUYWdOb2RlOjMw", | |
"slug": "binary-search-tree" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 63.80566804513818, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "236", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Lowest Common Ancestor of a Binary Tree", | |
"titleSlug": "lowest-common-ancestor-of-a-binary-tree", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 80.74792533400822, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "237", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Delete Node in a Linked List", | |
"titleSlug": "delete-node-in-a-linked-list", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 66.69938624810898, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "238", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Product of Array Except Self", | |
"titleSlug": "product-of-array-except-self", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Prefix Sum", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY4", | |
"slug": "prefix-sum" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 46.83017080942688, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "239", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Sliding Window Maximum", | |
"titleSlug": "sliding-window-maximum", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Queue", | |
"id": "VG9waWNUYWdOb2RlOjM0", | |
"slug": "queue" | |
}, | |
{ | |
"name": "Sliding Window", | |
"id": "VG9waWNUYWdOb2RlOjU1ODIx", | |
"slug": "sliding-window" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
}, | |
{ | |
"name": "Monotonic Queue", | |
"id": "VG9waWNUYWdOb2RlOjYxMDcx", | |
"slug": "monotonic-queue" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 53.50027389778318, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "240", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Search a 2D Matrix II", | |
"titleSlug": "search-a-2d-matrix-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Divide and Conquer", | |
"id": "VG9waWNUYWdOb2RlOjEy", | |
"slug": "divide-and-conquer" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 66.0262748975844, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "241", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Different Ways to Add Parentheses", | |
"titleSlug": "different-ways-to-add-parentheses", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
}, | |
{ | |
"name": "Memoization", | |
"id": "VG9waWNUYWdOb2RlOjMz", | |
"slug": "memoization" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 65.29513535501019, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "242", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Valid Anagram", | |
"titleSlug": "valid-anagram", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 65.47360094917936, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "243", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Shortest Word Distance", | |
"titleSlug": "shortest-word-distance", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 61.407577452076836, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "244", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Shortest Word Distance II", | |
"titleSlug": "shortest-word-distance-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 58.635920662408594, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "245", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Shortest Word Distance III", | |
"titleSlug": "shortest-word-distance-iii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 47.69139208132605, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "246", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Strobogrammatic Number", | |
"titleSlug": "strobogrammatic-number", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 52.63695666402438, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "247", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Strobogrammatic Number II", | |
"titleSlug": "strobogrammatic-number-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 42.21633158909391, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "248", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Strobogrammatic Number III", | |
"titleSlug": "strobogrammatic-number-iii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 66.04545659072923, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "249", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Group Shifted Strings", | |
"titleSlug": "group-shifted-strings", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 56.64723740574028, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "250", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Count Univalue Subtrees", | |
"titleSlug": "count-univalue-subtrees", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 49.68249781131845, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "251", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Flatten 2D Vector", | |
"titleSlug": "flatten-2d-vector", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Iterator", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY0", | |
"slug": "iterator" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 58.385513174974314, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "252", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Meeting Rooms", | |
"titleSlug": "meeting-rooms", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 51.49724394520675, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "253", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Meeting Rooms II", | |
"titleSlug": "meeting-rooms-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
}, | |
{ | |
"name": "Prefix Sum", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY4", | |
"slug": "prefix-sum" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 49.74289362583257, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "254", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Factor Combinations", | |
"titleSlug": "factor-combinations", | |
"topicTags": [ | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 50.233472001552435, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "255", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Verify Preorder Sequence in Binary Search Tree", | |
"titleSlug": "verify-preorder-sequence-in-binary-search-tree", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Binary Search Tree", | |
"id": "VG9waWNUYWdOb2RlOjMw", | |
"slug": "binary-search-tree" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
}, | |
{ | |
"name": "Monotonic Stack", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU0", | |
"slug": "monotonic-stack" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 62.89614521781206, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "256", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Paint House", | |
"titleSlug": "paint-house", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 64.6730110060058, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "257", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Binary Tree Paths", | |
"titleSlug": "binary-tree-paths", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 67.12745691546378, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "258", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Add Digits", | |
"titleSlug": "add-digits", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Simulation", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU1", | |
"slug": "simulation" | |
}, | |
{ | |
"name": "Number Theory", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY3", | |
"slug": "number-theory" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 50.85471065660521, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "259", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "3Sum Smaller", | |
"titleSlug": "3sum-smaller", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 70.77349748829893, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "260", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Single Number III", | |
"titleSlug": "single-number-iii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 48.508057041242985, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "261", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Graph Valid Tree", | |
"titleSlug": "graph-valid-tree", | |
"topicTags": [ | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Union Find", | |
"id": "VG9waWNUYWdOb2RlOjIz", | |
"slug": "union-find" | |
}, | |
{ | |
"name": "Graph", | |
"id": "VG9waWNUYWdOb2RlOjI0", | |
"slug": "graph" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 36.58108175997648, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "262", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Trips and Users", | |
"titleSlug": "trips-and-users", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 42.15920835756493, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "263", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Ugly Number", | |
"titleSlug": "ugly-number", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 49.13608238090825, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "264", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Ugly Number II", | |
"titleSlug": "ugly-number-ii", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 55.119829506081906, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "265", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Paint House II", | |
"titleSlug": "paint-house-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 67.68355272077004, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "266", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Palindrome Permutation", | |
"titleSlug": "palindrome-permutation", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 41.84056847698106, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "267", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Palindrome Permutation II", | |
"titleSlug": "palindrome-permutation-ii", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 68.0697557311053, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "268", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Missing Number", | |
"titleSlug": "missing-number", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 35.983990004649, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "269", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Alien Dictionary", | |
"titleSlug": "alien-dictionary", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Graph", | |
"id": "VG9waWNUYWdOb2RlOjI0", | |
"slug": "graph" | |
}, | |
{ | |
"name": "Topological Sort", | |
"id": "VG9waWNUYWdOb2RlOjI2", | |
"slug": "topological-sort" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 51.08166951676652, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "270", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Closest Binary Search Tree Value", | |
"titleSlug": "closest-binary-search-tree-value", | |
"topicTags": [ | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Search Tree", | |
"id": "VG9waWNUYWdOb2RlOjMw", | |
"slug": "binary-search-tree" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 47.63435276899584, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "271", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Encode and Decode Strings", | |
"titleSlug": "encode-and-decode-strings", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 59.45967098923353, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "272", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Closest Binary Search Tree Value II", | |
"titleSlug": "closest-binary-search-tree-value-ii", | |
"topicTags": [ | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Search Tree", | |
"id": "VG9waWNUYWdOb2RlOjMw", | |
"slug": "binary-search-tree" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 34.01194124413911, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "273", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Integer to English Words", | |
"titleSlug": "integer-to-english-words", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 39.352315012178636, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "274", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "H-Index", | |
"titleSlug": "h-index", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Counting Sort", | |
"id": "VG9waWNUYWdOb2RlOjYxMDcy", | |
"slug": "counting-sort" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 38.43201549435428, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "275", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "H-Index II", | |
"titleSlug": "h-index-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 47.042008652407716, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "276", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Paint Fence", | |
"titleSlug": "paint-fence", | |
"topicTags": [ | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 47.560212484312956, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "277", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Find the Celebrity", | |
"titleSlug": "find-the-celebrity", | |
"topicTags": [ | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Graph", | |
"id": "VG9waWNUYWdOb2RlOjI0", | |
"slug": "graph" | |
}, | |
{ | |
"name": "Interactive", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU5", | |
"slug": "interactive" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 44.86603933835862, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "278", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "First Bad Version", | |
"titleSlug": "first-bad-version", | |
"topicTags": [ | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Interactive", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU5", | |
"slug": "interactive" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 55.100827315357634, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "279", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Perfect Squares", | |
"titleSlug": "perfect-squares", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 67.85087575631373, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "280", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Wiggle Sort", | |
"titleSlug": "wiggle-sort", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 64.36767765979513, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "281", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Zigzag Iterator", | |
"titleSlug": "zigzag-iterator", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Queue", | |
"id": "VG9waWNUYWdOb2RlOjM0", | |
"slug": "queue" | |
}, | |
{ | |
"name": "Iterator", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY0", | |
"slug": "iterator" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 40.2764745507331, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "282", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Expression Add Operators", | |
"titleSlug": "expression-add-operators", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 62.08590922050992, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "283", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Move Zeroes", | |
"titleSlug": "move-zeroes", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 59.887244313728615, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "284", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Peeking Iterator", | |
"titleSlug": "peeking-iterator", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Iterator", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY0", | |
"slug": "iterator" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 50.1053438603475, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "285", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Inorder Successor in BST", | |
"titleSlug": "inorder-successor-in-bst", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Search Tree", | |
"id": "VG9waWNUYWdOb2RlOjMw", | |
"slug": "binary-search-tree" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 61.85952691328341, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "286", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Walls and Gates", | |
"titleSlug": "walls-and-gates", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 61.55722704542138, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "287", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Find the Duplicate Number", | |
"titleSlug": "find-the-duplicate-number", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 26.521566034650686, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "288", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Unique Word Abbreviation", | |
"titleSlug": "unique-word-abbreviation", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 70.04538683321975, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "289", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Game of Life", | |
"titleSlug": "game-of-life", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
}, | |
{ | |
"name": "Simulation", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU1", | |
"slug": "simulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 42.413374904077834, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "290", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Word Pattern", | |
"titleSlug": "word-pattern", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 48.383039885016174, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "291", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Word Pattern II", | |
"titleSlug": "word-pattern-ii", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 57.25685328074661, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "292", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Nim Game", | |
"titleSlug": "nim-game", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Brainteaser", | |
"id": "VG9waWNUYWdOb2RlOjMy", | |
"slug": "brainteaser" | |
}, | |
{ | |
"name": "Game Theory", | |
"id": "VG9waWNUYWdOb2RlOjYxMDcz", | |
"slug": "game-theory" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 64.70848362930077, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "293", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Flip Game", | |
"titleSlug": "flip-game", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 52.178531155650944, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "294", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Flip Game II", | |
"titleSlug": "flip-game-ii", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
}, | |
{ | |
"name": "Memoization", | |
"id": "VG9waWNUYWdOb2RlOjMz", | |
"slug": "memoization" | |
}, | |
{ | |
"name": "Game Theory", | |
"id": "VG9waWNUYWdOb2RlOjYxMDcz", | |
"slug": "game-theory" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 52.32958867725043, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "295", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Find Median from Data Stream", | |
"titleSlug": "find-median-from-data-stream", | |
"topicTags": [ | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
}, | |
{ | |
"name": "Data Stream", | |
"id": "VG9waWNUYWdOb2RlOjYxMDYz", | |
"slug": "data-stream" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 60.97322636151847, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "296", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Best Meeting Point", | |
"titleSlug": "best-meeting-point", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 57.49940137981952, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "297", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Serialize and Deserialize Binary Tree", | |
"titleSlug": "serialize-and-deserialize-binary-tree", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 53.72652550796823, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "298", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Binary Tree Longest Consecutive Sequence", | |
"titleSlug": "binary-tree-longest-consecutive-sequence", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 50.62682761747679, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "299", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Bulls and Cows", | |
"titleSlug": "bulls-and-cows", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Counting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDYy", | |
"slug": "counting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 56.25398319759258, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "300", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Longest Increasing Subsequence", | |
"titleSlug": "longest-increasing-subsequence", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 48.53421870213977, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "301", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Remove Invalid Parentheses", | |
"titleSlug": "remove-invalid-parentheses", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 59.129208572727165, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "302", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Smallest Rectangle Enclosing Black Pixels", | |
"titleSlug": "smallest-rectangle-enclosing-black-pixels", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 64.95084429117087, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "303", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Range Sum Query - Immutable", | |
"titleSlug": "range-sum-query-immutable", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Prefix Sum", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY4", | |
"slug": "prefix-sum" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 55.24097762526294, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "304", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Range Sum Query 2D - Immutable", | |
"titleSlug": "range-sum-query-2d-immutable", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
}, | |
{ | |
"name": "Prefix Sum", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY4", | |
"slug": "prefix-sum" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 39.912729981774405, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "305", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Number of Islands II", | |
"titleSlug": "number-of-islands-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Union Find", | |
"id": "VG9waWNUYWdOb2RlOjIz", | |
"slug": "union-find" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 31.968651383037123, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "306", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Additive Number", | |
"titleSlug": "additive-number", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 41.269892545746615, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "307", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Range Sum Query - Mutable", | |
"titleSlug": "range-sum-query-mutable", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Binary Indexed Tree", | |
"id": "VG9waWNUYWdOb2RlOjI4", | |
"slug": "binary-indexed-tree" | |
}, | |
{ | |
"name": "Segment Tree", | |
"id": "VG9waWNUYWdOb2RlOjI5", | |
"slug": "segment-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 44.28953453529854, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "308", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Range Sum Query 2D - Mutable", | |
"titleSlug": "range-sum-query-2d-mutable", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Binary Indexed Tree", | |
"id": "VG9waWNUYWdOb2RlOjI4", | |
"slug": "binary-indexed-tree" | |
}, | |
{ | |
"name": "Segment Tree", | |
"id": "VG9waWNUYWdOb2RlOjI5", | |
"slug": "segment-tree" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 59.104529031352534, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "309", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Best Time to Buy and Sell Stock with Cooldown", | |
"titleSlug": "best-time-to-buy-and-sell-stock-with-cooldown", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 41.86259312697451, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "310", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Minimum Height Trees", | |
"titleSlug": "minimum-height-trees", | |
"topicTags": [ | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Graph", | |
"id": "VG9waWNUYWdOb2RlOjI0", | |
"slug": "graph" | |
}, | |
{ | |
"name": "Topological Sort", | |
"id": "VG9waWNUYWdOb2RlOjI2", | |
"slug": "topological-sort" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 68.27641184861962, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "311", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Sparse Matrix Multiplication", | |
"titleSlug": "sparse-matrix-multiplication", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 59.81353984047555, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "312", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Burst Balloons", | |
"titleSlug": "burst-balloons", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 45.3535459825323, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "313", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Super Ugly Number", | |
"titleSlug": "super-ugly-number", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 55.12160252140432, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "314", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Binary Tree Vertical Order Traversal", | |
"titleSlug": "binary-tree-vertical-order-traversal", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 42.5926973224201, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "315", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Count of Smaller Numbers After Self", | |
"titleSlug": "count-of-smaller-numbers-after-self", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Divide and Conquer", | |
"id": "VG9waWNUYWdOb2RlOjEy", | |
"slug": "divide-and-conquer" | |
}, | |
{ | |
"name": "Binary Indexed Tree", | |
"id": "VG9waWNUYWdOb2RlOjI4", | |
"slug": "binary-indexed-tree" | |
}, | |
{ | |
"name": "Segment Tree", | |
"id": "VG9waWNUYWdOb2RlOjI5", | |
"slug": "segment-tree" | |
}, | |
{ | |
"name": "Merge Sort", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUx", | |
"slug": "merge-sort" | |
}, | |
{ | |
"name": "Ordered Set", | |
"id": "VG9waWNUYWdOb2RlOjYxMDcw", | |
"slug": "ordered-set" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 50.1395022398341, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "316", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Remove Duplicate Letters", | |
"titleSlug": "remove-duplicate-letters", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
}, | |
{ | |
"name": "Monotonic Stack", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU0", | |
"slug": "monotonic-stack" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 43.456663892521696, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "317", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Shortest Distance from All Buildings", | |
"titleSlug": "shortest-distance-from-all-buildings", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 60.206813800169876, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "318", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Maximum Product of Word Lengths", | |
"titleSlug": "maximum-product-of-word-lengths", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 53.11020944573619, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "319", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Bulb Switcher", | |
"titleSlug": "bulb-switcher", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Brainteaser", | |
"id": "VG9waWNUYWdOb2RlOjMy", | |
"slug": "brainteaser" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 59.73976807920531, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "320", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Generalized Abbreviation", | |
"titleSlug": "generalized-abbreviation", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 30.753010591478454, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "321", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Create Maximum Number", | |
"titleSlug": "create-maximum-number", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
}, | |
{ | |
"name": "Monotonic Stack", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU0", | |
"slug": "monotonic-stack" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 44.794565449534765, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "322", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Coin Change", | |
"titleSlug": "coin-change", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 63.23108384458078, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "323", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Number of Connected Components in an Undirected Graph", | |
"titleSlug": "number-of-connected-components-in-an-undirected-graph", | |
"topicTags": [ | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Union Find", | |
"id": "VG9waWNUYWdOb2RlOjIz", | |
"slug": "union-find" | |
}, | |
{ | |
"name": "Graph", | |
"id": "VG9waWNUYWdOb2RlOjI0", | |
"slug": "graph" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 34.770723677994894, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "324", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Wiggle Sort II", | |
"titleSlug": "wiggle-sort-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Divide and Conquer", | |
"id": "VG9waWNUYWdOb2RlOjEy", | |
"slug": "divide-and-conquer" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Quickselect", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY5", | |
"slug": "quickselect" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 49.62747587475248, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "325", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Maximum Size Subarray Sum Equals k", | |
"titleSlug": "maximum-size-subarray-sum-equals-k", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Prefix Sum", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY4", | |
"slug": "prefix-sum" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 47.03694261060692, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "326", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Power of Three", | |
"titleSlug": "power-of-three", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 36.149177232263284, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "327", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Count of Range Sum", | |
"titleSlug": "count-of-range-sum", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Divide and Conquer", | |
"id": "VG9waWNUYWdOb2RlOjEy", | |
"slug": "divide-and-conquer" | |
}, | |
{ | |
"name": "Binary Indexed Tree", | |
"id": "VG9waWNUYWdOb2RlOjI4", | |
"slug": "binary-indexed-tree" | |
}, | |
{ | |
"name": "Segment Tree", | |
"id": "VG9waWNUYWdOb2RlOjI5", | |
"slug": "segment-tree" | |
}, | |
{ | |
"name": "Merge Sort", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUx", | |
"slug": "merge-sort" | |
}, | |
{ | |
"name": "Ordered Set", | |
"id": "VG9waWNUYWdOb2RlOjYxMDcw", | |
"slug": "ordered-set" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 61.61505973037086, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "328", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Odd Even Linked List", | |
"titleSlug": "odd-even-linked-list", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 54.089070886363366, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "329", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Longest Increasing Path in a Matrix", | |
"titleSlug": "longest-increasing-path-in-a-matrix", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Graph", | |
"id": "VG9waWNUYWdOb2RlOjI0", | |
"slug": "graph" | |
}, | |
{ | |
"name": "Topological Sort", | |
"id": "VG9waWNUYWdOb2RlOjI2", | |
"slug": "topological-sort" | |
}, | |
{ | |
"name": "Memoization", | |
"id": "VG9waWNUYWdOb2RlOjMz", | |
"slug": "memoization" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 53.17175254791541, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "330", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Patching Array", | |
"titleSlug": "patching-array", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 45.51912448391637, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "331", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Verify Preorder Serialization of a Binary Tree", | |
"titleSlug": "verify-preorder-serialization-of-a-binary-tree", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 43.2946770837666, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "332", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Reconstruct Itinerary", | |
"titleSlug": "reconstruct-itinerary", | |
"topicTags": [ | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Graph", | |
"id": "VG9waWNUYWdOb2RlOjI0", | |
"slug": "graph" | |
}, | |
{ | |
"name": "Eulerian Circuit", | |
"id": "VG9waWNUYWdOb2RlOjYxMDc0", | |
"slug": "eulerian-circuit" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 44.34922356499056, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "333", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Largest BST Subtree", | |
"titleSlug": "largest-bst-subtree", | |
"topicTags": [ | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Search Tree", | |
"id": "VG9waWNUYWdOb2RlOjMw", | |
"slug": "binary-search-tree" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 39.44107036457895, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "334", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Increasing Triplet Subsequence", | |
"titleSlug": "increasing-triplet-subsequence", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 30.943638464501223, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "335", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Self Crossing", | |
"titleSlug": "self-crossing", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Geometry", | |
"id": "VG9waWNUYWdOb2RlOjM4", | |
"slug": "geometry" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 35.60348337556321, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "336", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Palindrome Pairs", | |
"titleSlug": "palindrome-pairs", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Trie", | |
"id": "VG9waWNUYWdOb2RlOjI3", | |
"slug": "trie" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 54.43895918584912, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "337", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "House Robber III", | |
"titleSlug": "house-robber-iii", | |
"topicTags": [ | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 78.83810089412385, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "338", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Counting Bits", | |
"titleSlug": "counting-bits", | |
"topicTags": [ | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 84.23858378595857, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "339", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Nested List Weight Sum", | |
"titleSlug": "nested-list-weight-sum", | |
"topicTags": [ | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 49.017620048683334, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "340", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Longest Substring with At Most K Distinct Characters", | |
"titleSlug": "longest-substring-with-at-most-k-distinct-characters", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Sliding Window", | |
"id": "VG9waWNUYWdOb2RlOjU1ODIx", | |
"slug": "sliding-window" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 64.77394525720338, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "341", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Flatten Nested List Iterator", | |
"titleSlug": "flatten-nested-list-iterator", | |
"topicTags": [ | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Queue", | |
"id": "VG9waWNUYWdOb2RlOjM0", | |
"slug": "queue" | |
}, | |
{ | |
"name": "Iterator", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY0", | |
"slug": "iterator" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 48.42743971612766, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "342", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Power of Four", | |
"titleSlug": "power-of-four", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 60.622083014224096, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "343", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Integer Break", | |
"titleSlug": "integer-break", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 79.00421318457275, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "344", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Reverse String", | |
"titleSlug": "reverse-string", | |
"topicTags": [ | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 54.279541803411945, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "345", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Reverse Vowels of a String", | |
"titleSlug": "reverse-vowels-of-a-string", | |
"topicTags": [ | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 78.78169826684625, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "346", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Moving Average from Data Stream", | |
"titleSlug": "moving-average-from-data-stream", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Queue", | |
"id": "VG9waWNUYWdOb2RlOjM0", | |
"slug": "queue" | |
}, | |
{ | |
"name": "Data Stream", | |
"id": "VG9waWNUYWdOb2RlOjYxMDYz", | |
"slug": "data-stream" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 63.27870707519121, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "347", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Top K Frequent Elements", | |
"titleSlug": "top-k-frequent-elements", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Divide and Conquer", | |
"id": "VG9waWNUYWdOb2RlOjEy", | |
"slug": "divide-and-conquer" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
}, | |
{ | |
"name": "Bucket Sort", | |
"id": "VG9waWNUYWdOb2RlOjYxMDYw", | |
"slug": "bucket-sort" | |
}, | |
{ | |
"name": "Counting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDYy", | |
"slug": "counting" | |
}, | |
{ | |
"name": "Quickselect", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY5", | |
"slug": "quickselect" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 58.17613588265844, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "348", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Design Tic-Tac-Toe", | |
"titleSlug": "design-tic-tac-toe", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
}, | |
{ | |
"name": "Simulation", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU1", | |
"slug": "simulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 75.20538358874866, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "349", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Intersection of Two Arrays", | |
"titleSlug": "intersection-of-two-arrays", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 58.657304389256105, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "350", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Intersection of Two Arrays II", | |
"titleSlug": "intersection-of-two-arrays-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 52.932385463868755, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "351", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Android Unlock Patterns", | |
"titleSlug": "android-unlock-patterns", | |
"topicTags": [ | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
}, | |
{ | |
"name": "Bitmask", | |
"id": "VG9waWNUYWdOb2RlOjYxMDc4", | |
"slug": "bitmask" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 60.17444986986169, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "352", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Data Stream as Disjoint Intervals", | |
"titleSlug": "data-stream-as-disjoint-intervals", | |
"topicTags": [ | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Ordered Set", | |
"id": "VG9waWNUYWdOb2RlOjYxMDcw", | |
"slug": "ordered-set" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 38.86791779330531, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "353", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Design Snake Game", | |
"titleSlug": "design-snake-game", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Queue", | |
"id": "VG9waWNUYWdOb2RlOjM0", | |
"slug": "queue" | |
}, | |
{ | |
"name": "Simulation", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU1", | |
"slug": "simulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 37.08453683904603, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "354", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Russian Doll Envelopes", | |
"titleSlug": "russian-doll-envelopes", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 40.576737062711594, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "355", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Design Twitter", | |
"titleSlug": "design-twitter", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 35.71404214690036, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "356", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Line Reflection", | |
"titleSlug": "line-reflection", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 53.36770890473579, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "357", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Count Numbers with Unique Digits", | |
"titleSlug": "count-numbers-with-unique-digits", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 38.98724672368684, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "358", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Rearrange String k Distance Apart", | |
"titleSlug": "rearrange-string-k-distance-apart", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
}, | |
{ | |
"name": "Counting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDYy", | |
"slug": "counting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 76.09220426679299, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "359", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Logger Rate Limiter", | |
"titleSlug": "logger-rate-limiter", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Data Stream", | |
"id": "VG9waWNUYWdOb2RlOjYxMDYz", | |
"slug": "data-stream" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 56.06223626918615, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "360", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Sort Transformed Array", | |
"titleSlug": "sort-transformed-array", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 51.87664574954476, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "361", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Bomb Enemy", | |
"titleSlug": "bomb-enemy", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 68.8255547262733, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "362", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Design Hit Counter", | |
"titleSlug": "design-hit-counter", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Queue", | |
"id": "VG9waWNUYWdOb2RlOjM0", | |
"slug": "queue" | |
}, | |
{ | |
"name": "Data Stream", | |
"id": "VG9waWNUYWdOb2RlOjYxMDYz", | |
"slug": "data-stream" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 44.28336535299513, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "363", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Max Sum of Rectangle No Larger Than K", | |
"titleSlug": "max-sum-of-rectangle-no-larger-than-k", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
}, | |
{ | |
"name": "Prefix Sum", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY4", | |
"slug": "prefix-sum" | |
}, | |
{ | |
"name": "Ordered Set", | |
"id": "VG9waWNUYWdOb2RlOjYxMDcw", | |
"slug": "ordered-set" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 64.73579819966434, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "364", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Nested List Weight Sum II", | |
"titleSlug": "nested-list-weight-sum-ii", | |
"topicTags": [ | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 41.543136306692915, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "365", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Water and Jug Problem", | |
"titleSlug": "water-and-jug-problem", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 80.7409122482056, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "366", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Find Leaves of Binary Tree", | |
"titleSlug": "find-leaves-of-binary-tree", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 43.83905127985424, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "367", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Valid Perfect Square", | |
"titleSlug": "valid-perfect-square", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 45.6497511282669, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "368", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Largest Divisible Subset", | |
"titleSlug": "largest-divisible-subset", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 61.134575134470104, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "369", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Plus One Linked List", | |
"titleSlug": "plus-one-linked-list", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 71.8049937334424, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "370", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Range Addition", | |
"titleSlug": "range-addition", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Prefix Sum", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY4", | |
"slug": "prefix-sum" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 52.502198388695454, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "371", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Sum of Two Integers", | |
"titleSlug": "sum-of-two-integers", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 35.067314068941855, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "372", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Super Pow", | |
"titleSlug": "super-pow", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Divide and Conquer", | |
"id": "VG9waWNUYWdOb2RlOjEy", | |
"slug": "divide-and-conquer" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 40.127683371261355, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "373", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Find K Pairs with Smallest Sums", | |
"titleSlug": "find-k-pairs-with-smallest-sums", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 54.20473175149706, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "374", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Guess Number Higher or Lower", | |
"titleSlug": "guess-number-higher-or-lower", | |
"topicTags": [ | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Interactive", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU5", | |
"slug": "interactive" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 49.85944570566635, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "375", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Guess Number Higher or Lower II", | |
"titleSlug": "guess-number-higher-or-lower-ii", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Game Theory", | |
"id": "VG9waWNUYWdOb2RlOjYxMDcz", | |
"slug": "game-theory" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 48.59814697257665, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "376", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Wiggle Subsequence", | |
"titleSlug": "wiggle-subsequence", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 54.28353111358053, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "377", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Combination Sum IV", | |
"titleSlug": "combination-sum-iv", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 62.76644457844911, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "378", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Kth Smallest Element in a Sorted Matrix", | |
"titleSlug": "kth-smallest-element-in-a-sorted-matrix", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 51.936719964297254, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "379", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Design Phone Directory", | |
"titleSlug": "design-phone-directory", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Queue", | |
"id": "VG9waWNUYWdOb2RlOjM0", | |
"slug": "queue" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 54.631117668724286, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "380", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Insert Delete GetRandom O(1)", | |
"titleSlug": "insert-delete-getrandom-o1", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Randomized", | |
"id": "VG9waWNUYWdOb2RlOjYxMDc1", | |
"slug": "randomized" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 35.618622983479916, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "381", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Insert Delete GetRandom O(1) - Duplicates allowed", | |
"titleSlug": "insert-delete-getrandom-o1-duplicates-allowed", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Randomized", | |
"id": "VG9waWNUYWdOb2RlOjYxMDc1", | |
"slug": "randomized" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 63.40219299361437, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "382", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Linked List Random Node", | |
"titleSlug": "linked-list-random-node", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Reservoir Sampling", | |
"id": "VG9waWNUYWdOb2RlOjM2", | |
"slug": "reservoir-sampling" | |
}, | |
{ | |
"name": "Randomized", | |
"id": "VG9waWNUYWdOb2RlOjYxMDc1", | |
"slug": "randomized" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 62.58716271032965, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "383", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Ransom Note", | |
"titleSlug": "ransom-note", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Counting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDYy", | |
"slug": "counting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 58.53364629847439, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "384", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Shuffle an Array", | |
"titleSlug": "shuffle-an-array", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Randomized", | |
"id": "VG9waWNUYWdOb2RlOjYxMDc1", | |
"slug": "randomized" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 38.74851153478756, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "385", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Mini Parser", | |
"titleSlug": "mini-parser", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 64.71656263988291, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "386", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Lexicographical Numbers", | |
"titleSlug": "lexicographical-numbers", | |
"topicTags": [ | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Trie", | |
"id": "VG9waWNUYWdOb2RlOjI3", | |
"slug": "trie" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 62.546375311559, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "387", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "First Unique Character in a String", | |
"titleSlug": "first-unique-character-in-a-string", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Queue", | |
"id": "VG9waWNUYWdOb2RlOjM0", | |
"slug": "queue" | |
}, | |
{ | |
"name": "Counting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDYy", | |
"slug": "counting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 47.80158339669902, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "388", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Longest Absolute File Path", | |
"titleSlug": "longest-absolute-file-path", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 59.567363674135024, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "389", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Find the Difference", | |
"titleSlug": "find-the-difference", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 45.75864845026401, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "390", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Elimination Game", | |
"titleSlug": "elimination-game", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 34.09047189215585, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "391", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Perfect Rectangle", | |
"titleSlug": "perfect-rectangle", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Line Sweep", | |
"id": "VG9waWNUYWdOb2RlOjU2MTE5", | |
"slug": "line-sweep" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 48.08820663568979, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "392", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Is Subsequence", | |
"titleSlug": "is-subsequence", | |
"topicTags": [ | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 45.23771876235311, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "393", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "UTF-8 Validation", | |
"titleSlug": "utf-8-validation", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 59.83938459287459, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "394", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Decode String", | |
"titleSlug": "decode-string", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 45.09489999980826, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "395", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Longest Substring with At Least K Repeating Characters", | |
"titleSlug": "longest-substring-with-at-least-k-repeating-characters", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Divide and Conquer", | |
"id": "VG9waWNUYWdOb2RlOjEy", | |
"slug": "divide-and-conquer" | |
}, | |
{ | |
"name": "Sliding Window", | |
"id": "VG9waWNUYWdOb2RlOjU1ODIx", | |
"slug": "sliding-window" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 42.9707739248911, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "396", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Rotate Function", | |
"titleSlug": "rotate-function", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 36.06588413479743, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "397", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Integer Replacement", | |
"titleSlug": "integer-replacement", | |
"topicTags": [ | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
}, | |
{ | |
"name": "Memoization", | |
"id": "VG9waWNUYWdOb2RlOjMz", | |
"slug": "memoization" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 63.75569755115447, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "398", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Random Pick Index", | |
"titleSlug": "random-pick-index", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Reservoir Sampling", | |
"id": "VG9waWNUYWdOb2RlOjM2", | |
"slug": "reservoir-sampling" | |
}, | |
{ | |
"name": "Randomized", | |
"id": "VG9waWNUYWdOb2RlOjYxMDc1", | |
"slug": "randomized" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 62.196806568117225, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "399", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Evaluate Division", | |
"titleSlug": "evaluate-division", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Union Find", | |
"id": "VG9waWNUYWdOb2RlOjIz", | |
"slug": "union-find" | |
}, | |
{ | |
"name": "Graph", | |
"id": "VG9waWNUYWdOb2RlOjI0", | |
"slug": "graph" | |
}, | |
{ | |
"name": "Shortest Path", | |
"id": "VG9waWNUYWdOb2RlOjYxMDc2", | |
"slug": "shortest-path" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 35.109261186264305, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "400", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Nth Digit", | |
"titleSlug": "nth-digit", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 55.11060733482028, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "401", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Binary Watch", | |
"titleSlug": "binary-watch", | |
"topicTags": [ | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 33.91941377541293, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "402", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Remove K Digits", | |
"titleSlug": "remove-k-digits", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
}, | |
{ | |
"name": "Monotonic Stack", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU0", | |
"slug": "monotonic-stack" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 46.20382985481323, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "403", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Frog Jump", | |
"titleSlug": "frog-jump", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 60.98583182791414, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "404", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Sum of Left Leaves", | |
"titleSlug": "sum-of-left-leaves", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 49.26216780085675, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "405", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Convert a Number to Hexadecimal", | |
"titleSlug": "convert-a-number-to-hexadecimal", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 73.7168401241356, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "406", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Queue Reconstruction by Height", | |
"titleSlug": "queue-reconstruction-by-height", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Indexed Tree", | |
"id": "VG9waWNUYWdOb2RlOjI4", | |
"slug": "binary-indexed-tree" | |
}, | |
{ | |
"name": "Segment Tree", | |
"id": "VG9waWNUYWdOb2RlOjI5", | |
"slug": "segment-tree" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 48.25599411749258, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "407", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Trapping Rain Water II", | |
"titleSlug": "trapping-rain-water-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 36.1021501747945, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "408", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Valid Word Abbreviation", | |
"titleSlug": "valid-word-abbreviation", | |
"topicTags": [ | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 55.370569713932014, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "409", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Longest Palindrome", | |
"titleSlug": "longest-palindrome", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 56.38493436402459, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "410", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Split Array Largest Sum", | |
"titleSlug": "split-array-largest-sum", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
}, | |
{ | |
"name": "Prefix Sum", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY4", | |
"slug": "prefix-sum" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 39.82497457581759, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "411", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Minimum Unique Word Abbreviation", | |
"titleSlug": "minimum-unique-word-abbreviation", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 72.96529172834285, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "412", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Fizz Buzz", | |
"titleSlug": "fizz-buzz", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Simulation", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU1", | |
"slug": "simulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 65.02085050169578, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "413", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Arithmetic Slices", | |
"titleSlug": "arithmetic-slices", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 35.60446725988171, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "414", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Third Maximum Number", | |
"titleSlug": "third-maximum-number", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 51.6392589925179, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "415", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Add Strings", | |
"titleSlug": "add-strings", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Simulation", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU1", | |
"slug": "simulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 46.724893478293836, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "416", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Partition Equal Subset Sum", | |
"titleSlug": "partition-equal-subset-sum", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 55.97392430053594, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "417", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Pacific Atlantic Water Flow", | |
"titleSlug": "pacific-atlantic-water-flow", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 36.25215146299484, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "418", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Sentence Screen Fitting", | |
"titleSlug": "sentence-screen-fitting", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 75.68514600673663, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "419", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Battleships in a Board", | |
"titleSlug": "battleships-in-a-board", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 14.037164574638588, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "420", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Strong Password Checker", | |
"titleSlug": "strong-password-checker", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 53.330849247011336, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "421", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Maximum XOR of Two Numbers in an Array", | |
"titleSlug": "maximum-xor-of-two-numbers-in-an-array", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
}, | |
{ | |
"name": "Trie", | |
"id": "VG9waWNUYWdOb2RlOjI3", | |
"slug": "trie" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 41.424738745291236, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "422", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Valid Word Square", | |
"titleSlug": "valid-word-square", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 51.23641732405068, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "423", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Reconstruct Original Digits from English", | |
"titleSlug": "reconstruct-original-digits-from-english", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 55.22113976228101, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "424", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Longest Repeating Character Replacement", | |
"titleSlug": "longest-repeating-character-replacement", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Sliding Window", | |
"id": "VG9waWNUYWdOb2RlOjU1ODIx", | |
"slug": "sliding-window" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 53.53836142567142, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "425", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Word Squares", | |
"titleSlug": "word-squares", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
}, | |
{ | |
"name": "Trie", | |
"id": "VG9waWNUYWdOb2RlOjI3", | |
"slug": "trie" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 64.92503826987941, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "426", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Convert Binary Search Tree to Sorted Doubly Linked List", | |
"titleSlug": "convert-binary-search-tree-to-sorted-doubly-linked-list", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Search Tree", | |
"id": "VG9waWNUYWdOb2RlOjMw", | |
"slug": "binary-search-tree" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
}, | |
{ | |
"name": "Doubly-Linked List", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU4", | |
"slug": "doubly-linked-list" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 75.9571114638707, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "427", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Construct Quad Tree", | |
"titleSlug": "construct-quad-tree", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Divide and Conquer", | |
"id": "VG9waWNUYWdOb2RlOjEy", | |
"slug": "divide-and-conquer" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 67.53592415927749, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "428", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Serialize and Deserialize N-ary Tree", | |
"titleSlug": "serialize-and-deserialize-n-ary-tree", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 70.98513318468007, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "429", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "N-ary Tree Level Order Traversal", | |
"titleSlug": "n-ary-tree-level-order-traversal", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 60.42470698496527, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "430", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Flatten a Multilevel Doubly Linked List", | |
"titleSlug": "flatten-a-multilevel-doubly-linked-list", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Doubly-Linked List", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU4", | |
"slug": "doubly-linked-list" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 79.69543147208121, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "431", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Encode N-ary Tree to Binary Tree", | |
"titleSlug": "encode-n-ary-tree-to-binary-tree", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 37.1537341073247, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "432", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "All O`one Data Structure", | |
"titleSlug": "all-oone-data-structure", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Doubly-Linked List", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU4", | |
"slug": "doubly-linked-list" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 54.40976536802865, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "433", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Minimum Genetic Mutation", | |
"titleSlug": "minimum-genetic-mutation", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 36.34703770164308, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "434", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Number of Segments in a String", | |
"titleSlug": "number-of-segments-in-a-string", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 54.060087457457605, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "435", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Non-overlapping Intervals", | |
"titleSlug": "non-overlapping-intervals", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 52.641507789899265, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "436", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Find Right Interval", | |
"titleSlug": "find-right-interval", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 46.0930583235874, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "437", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Path Sum III", | |
"titleSlug": "path-sum-iii", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 51.258984239513225, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "438", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Find All Anagrams in a String", | |
"titleSlug": "find-all-anagrams-in-a-string", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Sliding Window", | |
"id": "VG9waWNUYWdOb2RlOjU1ODIx", | |
"slug": "sliding-window" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 61.2087812810552, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "439", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Ternary Expression Parser", | |
"titleSlug": "ternary-expression-parser", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 32.71369451221978, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "440", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "K-th Smallest in Lexicographical Order", | |
"titleSlug": "k-th-smallest-in-lexicographical-order", | |
"topicTags": [ | |
{ | |
"name": "Trie", | |
"id": "VG9waWNUYWdOb2RlOjI3", | |
"slug": "trie" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 46.83670447359785, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "441", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Arranging Coins", | |
"titleSlug": "arranging-coins", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 75.93129445761707, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "442", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Find All Duplicates in an Array", | |
"titleSlug": "find-all-duplicates-in-an-array", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 55.69737251178463, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "443", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "String Compression", | |
"titleSlug": "string-compression", | |
"topicTags": [ | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 28.562502204596647, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "444", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Sequence Reconstruction", | |
"titleSlug": "sequence-reconstruction", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Graph", | |
"id": "VG9waWNUYWdOb2RlOjI0", | |
"slug": "graph" | |
}, | |
{ | |
"name": "Topological Sort", | |
"id": "VG9waWNUYWdOb2RlOjI2", | |
"slug": "topological-sort" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 61.38523489932886, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "445", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Add Two Numbers II", | |
"titleSlug": "add-two-numbers-ii", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 54.57998853211009, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "446", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Arithmetic Slices II - Subsequence", | |
"titleSlug": "arithmetic-slices-ii-subsequence", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 55.726073503067155, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "447", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Number of Boomerangs", | |
"titleSlug": "number-of-boomerangs", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 61.36456960365163, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "448", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Find All Numbers Disappeared in an Array", | |
"titleSlug": "find-all-numbers-disappeared-in-an-array", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 57.952175843161726, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "449", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Serialize and Deserialize BST", | |
"titleSlug": "serialize-and-deserialize-bst", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Binary Search Tree", | |
"id": "VG9waWNUYWdOb2RlOjMw", | |
"slug": "binary-search-tree" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 51.96833635984224, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "450", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Delete Node in a BST", | |
"titleSlug": "delete-node-in-a-bst", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Binary Search Tree", | |
"id": "VG9waWNUYWdOb2RlOjMw", | |
"slug": "binary-search-tree" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 73.03455491221071, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "451", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Sort Characters By Frequency", | |
"titleSlug": "sort-characters-by-frequency", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
}, | |
{ | |
"name": "Bucket Sort", | |
"id": "VG9waWNUYWdOb2RlOjYxMDYw", | |
"slug": "bucket-sort" | |
}, | |
{ | |
"name": "Counting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDYy", | |
"slug": "counting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 59.33761156598067, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "452", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Minimum Number of Arrows to Burst Balloons", | |
"titleSlug": "minimum-number-of-arrows-to-burst-balloons", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 56.97383455574918, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "453", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Minimum Moves to Equal Array Elements", | |
"titleSlug": "minimum-moves-to-equal-array-elements", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 57.366845647450596, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "454", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "4Sum II", | |
"titleSlug": "4sum-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 53.1423445304562, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "455", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Assign Cookies", | |
"titleSlug": "assign-cookies", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 33.78798791968359, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "456", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "132 Pattern", | |
"titleSlug": "132-pattern", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Monotonic Stack", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU0", | |
"slug": "monotonic-stack" | |
}, | |
{ | |
"name": "Ordered Set", | |
"id": "VG9waWNUYWdOb2RlOjYxMDcw", | |
"slug": "ordered-set" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 34.533596337543855, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "457", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Circular Array Loop", | |
"titleSlug": "circular-array-loop", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 59.51711032217197, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "458", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Poor Pigs", | |
"titleSlug": "poor-pigs", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Combinatorics", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU2", | |
"slug": "combinatorics" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 46.27649582015717, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "459", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Repeated Substring Pattern", | |
"titleSlug": "repeated-substring-pattern", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "String Matching", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUy", | |
"slug": "string-matching" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 44.89077099556818, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "460", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "LFU Cache", | |
"titleSlug": "lfu-cache", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Doubly-Linked List", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU4", | |
"slug": "doubly-linked-list" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 75.60596512800586, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "461", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Hamming Distance", | |
"titleSlug": "hamming-distance", | |
"topicTags": [ | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 60.34671052208939, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "462", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Minimum Moves to Equal Array Elements II", | |
"titleSlug": "minimum-moves-to-equal-array-elements-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 73.0742716717165, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "463", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Island Perimeter", | |
"titleSlug": "island-perimeter", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 29.81294253351283, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "464", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Can I Win", | |
"titleSlug": "can-i-win", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
}, | |
{ | |
"name": "Memoization", | |
"id": "VG9waWNUYWdOb2RlOjMz", | |
"slug": "memoization" | |
}, | |
{ | |
"name": "Game Theory", | |
"id": "VG9waWNUYWdOb2RlOjYxMDcz", | |
"slug": "game-theory" | |
}, | |
{ | |
"name": "Bitmask", | |
"id": "VG9waWNUYWdOb2RlOjYxMDc4", | |
"slug": "bitmask" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 49.659321954979795, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "465", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Optimal Account Balancing", | |
"titleSlug": "optimal-account-balancing", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
}, | |
{ | |
"name": "Bitmask", | |
"id": "VG9waWNUYWdOb2RlOjYxMDc4", | |
"slug": "bitmask" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 30.71426371392491, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "466", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Count The Repetitions", | |
"titleSlug": "count-the-repetitions", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 40.2004656758792, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "467", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Unique Substrings in Wraparound String", | |
"titleSlug": "unique-substrings-in-wraparound-string", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 27.392898819137745, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "468", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Validate IP Address", | |
"titleSlug": "validate-ip-address", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 39.68352128046562, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "469", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Convex Polygon", | |
"titleSlug": "convex-polygon", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Geometry", | |
"id": "VG9waWNUYWdOb2RlOjM4", | |
"slug": "geometry" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 45.80553359683795, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "470", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Implement Rand10() Using Rand7()", | |
"titleSlug": "implement-rand10-using-rand7", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Rejection Sampling", | |
"id": "VG9waWNUYWdOb2RlOjU0NTY5", | |
"slug": "rejection-sampling" | |
}, | |
{ | |
"name": "Randomized", | |
"id": "VG9waWNUYWdOb2RlOjYxMDc1", | |
"slug": "randomized" | |
}, | |
{ | |
"name": "Probability and Statistics", | |
"id": "VG9waWNUYWdOb2RlOjYxMDc5", | |
"slug": "probability-and-statistics" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 50.47009726710293, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "471", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Encode String with Shortest Length", | |
"titleSlug": "encode-string-with-shortest-length", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 49.34313961181944, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "472", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Concatenated Words", | |
"titleSlug": "concatenated-words", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Trie", | |
"id": "VG9waWNUYWdOb2RlOjI3", | |
"slug": "trie" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 40.46047278413393, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "473", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Matchsticks to Square", | |
"titleSlug": "matchsticks-to-square", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
}, | |
{ | |
"name": "Bitmask", | |
"id": "VG9waWNUYWdOb2RlOjYxMDc4", | |
"slug": "bitmask" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 47.98570985747768, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "474", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Ones and Zeroes", | |
"titleSlug": "ones-and-zeroes", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 38.54376975238563, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "475", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Heaters", | |
"titleSlug": "heaters", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 70.31093680627497, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "476", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Number Complement", | |
"titleSlug": "number-complement", | |
"topicTags": [ | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 53.02608728128326, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "477", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Total Hamming Distance", | |
"titleSlug": "total-hamming-distance", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 40.12081170363379, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "478", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Generate Random Point in a Circle", | |
"titleSlug": "generate-random-point-in-a-circle", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Geometry", | |
"id": "VG9waWNUYWdOb2RlOjM4", | |
"slug": "geometry" | |
}, | |
{ | |
"name": "Rejection Sampling", | |
"id": "VG9waWNUYWdOb2RlOjU0NTY5", | |
"slug": "rejection-sampling" | |
}, | |
{ | |
"name": "Randomized", | |
"id": "VG9waWNUYWdOb2RlOjYxMDc1", | |
"slug": "randomized" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 33.75996615144584, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "479", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Largest Palindrome Product", | |
"titleSlug": "largest-palindrome-product", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Enumeration", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY2", | |
"slug": "enumeration" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 38.87448752139474, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "480", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Sliding Window Median", | |
"titleSlug": "sliding-window-median", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Sliding Window", | |
"id": "VG9waWNUYWdOb2RlOjU1ODIx", | |
"slug": "sliding-window" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 51.69587980878671, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "481", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Magical String", | |
"titleSlug": "magical-string", | |
"topicTags": [ | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 44.0699223719709, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "482", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "License Key Formatting", | |
"titleSlug": "license-key-formatting", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 41.58751575620928, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "483", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Smallest Good Base", | |
"titleSlug": "smallest-good-base", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 66.96139456067648, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "484", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Find Permutation", | |
"titleSlug": "find-permutation", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 60.503809891161566, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "485", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Max Consecutive Ones", | |
"titleSlug": "max-consecutive-ones", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 55.42511860946738, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "486", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Predict the Winner", | |
"titleSlug": "predict-the-winner", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
}, | |
{ | |
"name": "Game Theory", | |
"id": "VG9waWNUYWdOb2RlOjYxMDcz", | |
"slug": "game-theory" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 50.56051605500762, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "487", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Max Consecutive Ones II", | |
"titleSlug": "max-consecutive-ones-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Sliding Window", | |
"id": "VG9waWNUYWdOb2RlOjU1ODIx", | |
"slug": "sliding-window" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 32.49023346355382, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "488", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Zuma Game", | |
"titleSlug": "zuma-game", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Memoization", | |
"id": "VG9waWNUYWdOb2RlOjMz", | |
"slug": "memoization" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 76.86212718064152, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "489", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Robot Room Cleaner", | |
"titleSlug": "robot-room-cleaner", | |
"topicTags": [ | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
}, | |
{ | |
"name": "Interactive", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU5", | |
"slug": "interactive" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 58.423884548838664, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "490", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "The Maze", | |
"titleSlug": "the-maze", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 61.04584116689148, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "491", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Non-decreasing Subsequences", | |
"titleSlug": "non-decreasing-subsequences", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 58.72075876242329, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "492", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Construct the Rectangle", | |
"titleSlug": "construct-the-rectangle", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 31.016517247663117, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "493", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Reverse Pairs", | |
"titleSlug": "reverse-pairs", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Divide and Conquer", | |
"id": "VG9waWNUYWdOb2RlOjEy", | |
"slug": "divide-and-conquer" | |
}, | |
{ | |
"name": "Binary Indexed Tree", | |
"id": "VG9waWNUYWdOb2RlOjI4", | |
"slug": "binary-indexed-tree" | |
}, | |
{ | |
"name": "Segment Tree", | |
"id": "VG9waWNUYWdOb2RlOjI5", | |
"slug": "segment-tree" | |
}, | |
{ | |
"name": "Merge Sort", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUx", | |
"slug": "merge-sort" | |
}, | |
{ | |
"name": "Ordered Set", | |
"id": "VG9waWNUYWdOb2RlOjYxMDcw", | |
"slug": "ordered-set" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 47.49556109171531, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "494", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Target Sum", | |
"titleSlug": "target-sum", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 56.71477663230241, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "495", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Teemo Attacking", | |
"titleSlug": "teemo-attacking", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Simulation", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU1", | |
"slug": "simulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 73.05579861765938, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "496", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Next Greater Element I", | |
"titleSlug": "next-greater-element-i", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Monotonic Stack", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU0", | |
"slug": "monotonic-stack" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 40.2614614197677, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "497", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Random Point in Non-overlapping Rectangles", | |
"titleSlug": "random-point-in-non-overlapping-rectangles", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Reservoir Sampling", | |
"id": "VG9waWNUYWdOb2RlOjM2", | |
"slug": "reservoir-sampling" | |
}, | |
{ | |
"name": "Prefix Sum", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY4", | |
"slug": "prefix-sum" | |
}, | |
{ | |
"name": "Ordered Set", | |
"id": "VG9waWNUYWdOb2RlOjYxMDcw", | |
"slug": "ordered-set" | |
}, | |
{ | |
"name": "Randomized", | |
"id": "VG9waWNUYWdOb2RlOjYxMDc1", | |
"slug": "randomized" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 60.95048081923655, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "498", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Diagonal Traverse", | |
"titleSlug": "diagonal-traverse", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
}, | |
{ | |
"name": "Simulation", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU1", | |
"slug": "simulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 49.317509210605785, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "499", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "The Maze III", | |
"titleSlug": "the-maze-iii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Graph", | |
"id": "VG9waWNUYWdOb2RlOjI0", | |
"slug": "graph" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
}, | |
{ | |
"name": "Shortest Path", | |
"id": "VG9waWNUYWdOb2RlOjYxMDc2", | |
"slug": "shortest-path" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 71.22863041660086, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "500", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Keyboard Row", | |
"titleSlug": "keyboard-row", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 56.60962167839215, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "501", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Find Mode in Binary Search Tree", | |
"titleSlug": "find-mode-in-binary-search-tree", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Search Tree", | |
"id": "VG9waWNUYWdOb2RlOjMw", | |
"slug": "binary-search-tree" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 53.136048245171565, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "502", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "IPO", | |
"titleSlug": "ipo", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 64.68556740131358, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "503", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Next Greater Element II", | |
"titleSlug": "next-greater-element-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Monotonic Stack", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU0", | |
"slug": "monotonic-stack" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 50.69973333333333, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "504", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Base 7", | |
"titleSlug": "base-7", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 53.631374298209046, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "505", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "The Maze II", | |
"titleSlug": "the-maze-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Graph", | |
"id": "VG9waWNUYWdOb2RlOjI0", | |
"slug": "graph" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
}, | |
{ | |
"name": "Shortest Path", | |
"id": "VG9waWNUYWdOb2RlOjYxMDc2", | |
"slug": "shortest-path" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 72.13663197342404, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "506", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Relative Ranks", | |
"titleSlug": "relative-ranks", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 42.07348255379411, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "507", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Perfect Number", | |
"titleSlug": "perfect-number", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 67.05140517132038, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "508", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Most Frequent Subtree Sum", | |
"titleSlug": "most-frequent-subtree-sum", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 71.76633416098856, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "509", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Fibonacci Number", | |
"titleSlug": "fibonacci-number", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
}, | |
{ | |
"name": "Memoization", | |
"id": "VG9waWNUYWdOb2RlOjMz", | |
"slug": "memoization" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 60.89588706393376, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "510", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Inorder Successor in BST II", | |
"titleSlug": "inorder-successor-in-bst-ii", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Binary Search Tree", | |
"id": "VG9waWNUYWdOb2RlOjMw", | |
"slug": "binary-search-tree" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 74.98792949338537, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "511", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Game Play Analysis I", | |
"titleSlug": "game-play-analysis-i", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 53.151358880886754, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "512", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Game Play Analysis II", | |
"titleSlug": "game-play-analysis-ii", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 71.36678382557275, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "513", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Find Bottom Left Tree Value", | |
"titleSlug": "find-bottom-left-tree-value", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 59.03303684202111, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "514", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Freedom Trail", | |
"titleSlug": "freedom-trail", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 65.70690841900303, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "515", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Find Largest Value in Each Tree Row", | |
"titleSlug": "find-largest-value-in-each-tree-row", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 63.14146343776975, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "516", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Longest Palindromic Subsequence", | |
"titleSlug": "longest-palindromic-subsequence", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 41.5952768401092, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "517", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Super Washing Machines", | |
"titleSlug": "super-washing-machines", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 64.68482726617647, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "518", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Coin Change II", | |
"titleSlug": "coin-change-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 42.412495083993484, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "519", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Random Flip Matrix", | |
"titleSlug": "random-flip-matrix", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Reservoir Sampling", | |
"id": "VG9waWNUYWdOb2RlOjM2", | |
"slug": "reservoir-sampling" | |
}, | |
{ | |
"name": "Randomized", | |
"id": "VG9waWNUYWdOb2RlOjYxMDc1", | |
"slug": "randomized" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 56.39042792057425, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "520", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Detect Capital", | |
"titleSlug": "detect-capital", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 60.92419405831541, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "521", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Longest Uncommon Subsequence I", | |
"titleSlug": "longest-uncommon-subsequence-i", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 42.07599629286376, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "522", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Longest Uncommon Subsequence II", | |
"titleSlug": "longest-uncommon-subsequence-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 30.362053511155686, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "523", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Continuous Subarray Sum", | |
"titleSlug": "continuous-subarray-sum", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Prefix Sum", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY4", | |
"slug": "prefix-sum" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 51.35018830807459, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "524", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Longest Word in Dictionary through Deleting", | |
"titleSlug": "longest-word-in-dictionary-through-deleting", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 48.95641941202317, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "525", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Contiguous Array", | |
"titleSlug": "contiguous-array", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Prefix Sum", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY4", | |
"slug": "prefix-sum" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 64.34721042197677, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "526", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Beautiful Arrangement", | |
"titleSlug": "beautiful-arrangement", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
}, | |
{ | |
"name": "Bitmask", | |
"id": "VG9waWNUYWdOb2RlOjYxMDc4", | |
"slug": "bitmask" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 61.29435227596485, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "527", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Word Abbreviation", | |
"titleSlug": "word-abbreviation", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
}, | |
{ | |
"name": "Trie", | |
"id": "VG9waWNUYWdOb2RlOjI3", | |
"slug": "trie" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 47.18714442213241, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "528", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Random Pick with Weight", | |
"titleSlug": "random-pick-with-weight", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Prefix Sum", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY4", | |
"slug": "prefix-sum" | |
}, | |
{ | |
"name": "Randomized", | |
"id": "VG9waWNUYWdOb2RlOjYxMDc1", | |
"slug": "randomized" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 67.07496664171575, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "529", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Minesweeper", | |
"titleSlug": "minesweeper", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 58.52669179401495, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "530", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Minimum Absolute Difference in BST", | |
"titleSlug": "minimum-absolute-difference-in-bst", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Binary Search Tree", | |
"id": "VG9waWNUYWdOb2RlOjMw", | |
"slug": "binary-search-tree" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 62.39728651916609, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "531", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Lonely Pixel I", | |
"titleSlug": "lonely-pixel-i", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 43.430284123925745, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "532", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "K-diff Pairs in an Array", | |
"titleSlug": "k-diff-pairs-in-an-array", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 48.68478103772221, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "533", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Lonely Pixel II", | |
"titleSlug": "lonely-pixel-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 80.88492160207979, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "534", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Game Play Analysis III", | |
"titleSlug": "game-play-analysis-iii", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 86.49668556181098, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "535", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Encode and Decode TinyURL", | |
"titleSlug": "encode-and-decode-tinyurl", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Hash Function", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY1", | |
"slug": "hash-function" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 57.24055937470571, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "536", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Construct Binary Tree from String", | |
"titleSlug": "construct-binary-tree-from-string", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 72.04765395894428, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "537", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Complex Number Multiplication", | |
"titleSlug": "complex-number-multiplication", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Simulation", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU1", | |
"slug": "simulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 69.75830659468404, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "538", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Convert BST to Greater Tree", | |
"titleSlug": "convert-bst-to-greater-tree", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Search Tree", | |
"id": "VG9waWNUYWdOb2RlOjMw", | |
"slug": "binary-search-tree" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 59.86891267002888, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "539", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Minimum Time Difference", | |
"titleSlug": "minimum-time-difference", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 59.29219476151445, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "540", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Single Element in a Sorted Array", | |
"titleSlug": "single-element-in-a-sorted-array", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 51.109323979962596, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "541", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Reverse String II", | |
"titleSlug": "reverse-string-ii", | |
"topicTags": [ | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 49.46976208650584, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "542", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "01 Matrix", | |
"titleSlug": "01-matrix", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 61.43991012826865, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "543", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Diameter of Binary Tree", | |
"titleSlug": "diameter-of-binary-tree", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 77.18092448100053, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "544", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Output Contest Matches", | |
"titleSlug": "output-contest-matches", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
}, | |
{ | |
"name": "Simulation", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU1", | |
"slug": "simulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 45.86224777960173, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "545", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Boundary of Binary Tree", | |
"titleSlug": "boundary-of-binary-tree", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 48.07271787531807, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "546", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Remove Boxes", | |
"titleSlug": "remove-boxes", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Memoization", | |
"id": "VG9waWNUYWdOb2RlOjMz", | |
"slug": "memoization" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 67.13750233511388, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "547", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Number of Provinces", | |
"titleSlug": "number-of-provinces", | |
"topicTags": [ | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Union Find", | |
"id": "VG9waWNUYWdOb2RlOjIz", | |
"slug": "union-find" | |
}, | |
{ | |
"name": "Graph", | |
"id": "VG9waWNUYWdOb2RlOjI0", | |
"slug": "graph" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 50.153954978571136, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "548", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Split Array with Equal Sum", | |
"titleSlug": "split-array-with-equal-sum", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Prefix Sum", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY4", | |
"slug": "prefix-sum" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 49.52556192950175, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "549", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Binary Tree Longest Consecutive Sequence II", | |
"titleSlug": "binary-tree-longest-consecutive-sequence-ii", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 37.71328495466988, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "550", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Game Play Analysis IV", | |
"titleSlug": "game-play-analysis-iv", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 49.29444303031211, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "551", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Student Attendance Record I", | |
"titleSlug": "student-attendance-record-i", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 55.30725817552553, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "552", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Student Attendance Record II", | |
"titleSlug": "student-attendance-record-ii", | |
"topicTags": [ | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 61.17785493266702, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "553", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Optimal Division", | |
"titleSlug": "optimal-division", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 55.34911188842957, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "554", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Brick Wall", | |
"titleSlug": "brick-wall", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 43.48264348264348, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "555", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Split Concatenated Strings", | |
"titleSlug": "split-concatenated-strings", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 34.203119120642576, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "556", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Next Greater Element III", | |
"titleSlug": "next-greater-element-iii", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 83.28621463438843, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "557", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Reverse Words in a String III", | |
"titleSlug": "reverse-words-in-a-string-iii", | |
"topicTags": [ | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 50.141698426658856, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "558", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Logical OR of Two Binary Grids Represented as Quad-Trees", | |
"titleSlug": "logical-or-of-two-binary-grids-represented-as-quad-trees", | |
"topicTags": [ | |
{ | |
"name": "Divide and Conquer", | |
"id": "VG9waWNUYWdOb2RlOjEy", | |
"slug": "divide-and-conquer" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 72.41215597910046, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "559", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Maximum Depth of N-ary Tree", | |
"titleSlug": "maximum-depth-of-n-ary-tree", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 44.077042088336235, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "560", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Subarray Sum Equals K", | |
"titleSlug": "subarray-sum-equals-k", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Prefix Sum", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY4", | |
"slug": "prefix-sum" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 79.33050622596866, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "561", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Array Partition", | |
"titleSlug": "array-partition", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Counting Sort", | |
"id": "VG9waWNUYWdOb2RlOjYxMDcy", | |
"slug": "counting-sort" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 50.44869624111074, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "562", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Longest Line of Consecutive One in Matrix", | |
"titleSlug": "longest-line-of-consecutive-one-in-matrix", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 62.58698923879466, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "563", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Binary Tree Tilt", | |
"titleSlug": "binary-tree-tilt", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 31.75133617954812, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "564", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Find the Closest Palindrome", | |
"titleSlug": "find-the-closest-palindrome", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 56.34171863528577, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "565", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Array Nesting", | |
"titleSlug": "array-nesting", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 63.341348294594354, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "566", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Reshape the Matrix", | |
"titleSlug": "reshape-the-matrix", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
}, | |
{ | |
"name": "Simulation", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU1", | |
"slug": "simulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 44.78165500796753, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "567", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Permutation in String", | |
"titleSlug": "permutation-in-string", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Sliding Window", | |
"id": "VG9waWNUYWdOb2RlOjU1ODIx", | |
"slug": "sliding-window" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 45.86376721943328, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "568", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Maximum Vacation Days", | |
"titleSlug": "maximum-vacation-days", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 65.83068667177746, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "569", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Median Employee Salary", | |
"titleSlug": "median-employee-salary", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 49.615652142895364, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "570", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Managers with at Least 5 Direct Reports", | |
"titleSlug": "managers-with-at-least-5-direct-reports", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 42.36778508402181, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "571", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Find Median Given Frequency of Numbers", | |
"titleSlug": "find-median-given-frequency-of-numbers", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 48.64756136577454, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "572", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Subtree of Another Tree", | |
"titleSlug": "subtree-of-another-tree", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "String Matching", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUy", | |
"slug": "string-matching" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
}, | |
{ | |
"name": "Hash Function", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY1", | |
"slug": "hash-function" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 57.16487681617183, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "573", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Squirrel Simulation", | |
"titleSlug": "squirrel-simulation", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 61.09158322702618, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "574", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Winning Candidate", | |
"titleSlug": "winning-candidate", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 68.2683067024421, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "575", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Distribute Candies", | |
"titleSlug": "distribute-candies", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 48.11046015972937, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "576", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Out of Boundary Paths", | |
"titleSlug": "out-of-boundary-paths", | |
"topicTags": [ | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 76.2911443383984, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "577", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Employee Bonus", | |
"titleSlug": "employee-bonus", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 40.21244939621466, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "578", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Get Highest Answer Rate Question", | |
"titleSlug": "get-highest-answer-rate-question", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 47.47963671376896, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "579", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Find Cumulative Salary of an Employee", | |
"titleSlug": "find-cumulative-salary-of-an-employee", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 59.2069880962576, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "580", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Count Student Number in Departments", | |
"titleSlug": "count-student-number-in-departments", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 37.05169654166296, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "581", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Shortest Unsorted Continuous Subarray", | |
"titleSlug": "shortest-unsorted-continuous-subarray", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Monotonic Stack", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU0", | |
"slug": "monotonic-stack" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 69.64663075774186, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "582", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Kill Process", | |
"titleSlug": "kill-process", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 62.623527078503386, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "583", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Delete Operation for Two Strings", | |
"titleSlug": "delete-operation-for-two-strings", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 70.81651985510813, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "584", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Find Customer Referee", | |
"titleSlug": "find-customer-referee", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 48.80838157094708, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "585", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Investments in 2016", | |
"titleSlug": "investments-in-2016", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 64.6747869340828, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "586", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Customer Placing the Largest Number of Orders", | |
"titleSlug": "customer-placing-the-largest-number-of-orders", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 51.97013140072825, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "587", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Erect the Fence", | |
"titleSlug": "erect-the-fence", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Geometry", | |
"id": "VG9waWNUYWdOb2RlOjM4", | |
"slug": "geometry" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 48.05004746334775, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "588", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Design In-Memory File System", | |
"titleSlug": "design-in-memory-file-system", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Trie", | |
"id": "VG9waWNUYWdOb2RlOjI3", | |
"slug": "trie" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 75.78980842450859, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "589", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "N-ary Tree Preorder Traversal", | |
"titleSlug": "n-ary-tree-preorder-traversal", | |
"topicTags": [ | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 80.37393966342864, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "590", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "N-ary Tree Postorder Traversal", | |
"titleSlug": "n-ary-tree-postorder-traversal", | |
"topicTags": [ | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 39.107414839349175, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "591", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Tag Validator", | |
"titleSlug": "tag-validator", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 66.08827721083128, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "592", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Fraction Addition and Subtraction", | |
"titleSlug": "fraction-addition-and-subtraction", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Simulation", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU1", | |
"slug": "simulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 44.146736623843516, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "593", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Valid Square", | |
"titleSlug": "valid-square", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Geometry", | |
"id": "VG9waWNUYWdOb2RlOjM4", | |
"slug": "geometry" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 55.34600428019626, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "594", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Longest Harmonious Subsequence", | |
"titleSlug": "longest-harmonious-subsequence", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Sliding Window", | |
"id": "VG9waWNUYWdOb2RlOjU1ODIx", | |
"slug": "sliding-window" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Counting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDYy", | |
"slug": "counting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 68.12371247476537, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "595", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Big Countries", | |
"titleSlug": "big-countries", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 57.23012769644894, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "596", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Classes More Than 5 Students", | |
"titleSlug": "classes-more-than-5-students", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 41.749809380120375, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "597", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Friend Requests I: Overall Acceptance Rate", | |
"titleSlug": "friend-requests-i-overall-acceptance-rate", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 56.47834195134356, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "598", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Range Addition II", | |
"titleSlug": "range-addition-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 56.24717763692658, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "599", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Minimum Index Sum of Two Lists", | |
"titleSlug": "minimum-index-sum-of-two-lists", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 40.112469437652805, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "600", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Non-negative Integers without Consecutive Ones", | |
"titleSlug": "non-negative-integers-without-consecutive-ones", | |
"topicTags": [ | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 48.89283694669677, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "601", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Human Traffic of Stadium", | |
"titleSlug": "human-traffic-of-stadium", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 58.27805368123295, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "602", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Friend Requests II: Who Has the Most Friends", | |
"titleSlug": "friend-requests-ii-who-has-the-most-friends", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 65.8691316411166, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "603", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Consecutive Available Seats", | |
"titleSlug": "consecutive-available-seats", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 39.99511360860005, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "604", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Design Compressed String Iterator", | |
"titleSlug": "design-compressed-string-iterator", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Iterator", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY0", | |
"slug": "iterator" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 28.918157616687473, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "605", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Can Place Flowers", | |
"titleSlug": "can-place-flowers", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 69.52079832741173, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "606", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Construct String from Binary Tree", | |
"titleSlug": "construct-string-from-binary-tree", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 65.7409918307854, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "607", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Sales Person", | |
"titleSlug": "sales-person", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 72.78004730165556, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "608", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Tree Node", | |
"titleSlug": "tree-node", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 67.6636293775387, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "609", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Find Duplicate File in System", | |
"titleSlug": "find-duplicate-file-in-system", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 72.41728213655053, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "610", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Triangle Judgement", | |
"titleSlug": "triangle-judgement", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 51.447078453992624, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "611", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Valid Triangle Number", | |
"titleSlug": "valid-triangle-number", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 61.295654569444245, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "612", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Shortest Distance in a Plane", | |
"titleSlug": "shortest-distance-in-a-plane", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 80.12087200518023, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "613", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Shortest Distance in a Line", | |
"titleSlug": "shortest-distance-in-a-line", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 39.004326844255, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "614", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Second Degree Follower", | |
"titleSlug": "second-degree-follower", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 56.28789915464348, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "615", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Average Salary: Departments VS Company", | |
"titleSlug": "average-salary-departments-vs-company", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 50.01080345278351, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "616", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Add Bold Tag in String", | |
"titleSlug": "add-bold-tag-in-string", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Trie", | |
"id": "VG9waWNUYWdOb2RlOjI3", | |
"slug": "trie" | |
}, | |
{ | |
"name": "String Matching", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUy", | |
"slug": "string-matching" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 79.10493541310022, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "617", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Merge Two Binary Trees", | |
"titleSlug": "merge-two-binary-trees", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 63.38723145828589, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "618", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Students Report By Geography", | |
"titleSlug": "students-report-by-geography", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 66.02569070907803, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "619", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Biggest Single Number", | |
"titleSlug": "biggest-single-number", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 74.25081004780084, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "620", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Not Boring Movies", | |
"titleSlug": "not-boring-movies", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 60.34650942579535, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "621", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Task Scheduler", | |
"titleSlug": "task-scheduler", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
}, | |
{ | |
"name": "Counting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDYy", | |
"slug": "counting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 51.7606375726627, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "622", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Design Circular Queue", | |
"titleSlug": "design-circular-queue", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Queue", | |
"id": "VG9waWNUYWdOb2RlOjM0", | |
"slug": "queue" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 64.0713076660551, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "623", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Add One Row to Tree", | |
"titleSlug": "add-one-row-to-tree", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 45.84795657093987, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "624", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Maximum Distance in Arrays", | |
"titleSlug": "maximum-distance-in-arrays", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 33.70578919584727, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "625", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Minimum Factorization", | |
"titleSlug": "minimum-factorization", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 70.8939128882044, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "626", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Exchange Seats", | |
"titleSlug": "exchange-seats", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 83.48294574703037, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "627", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Swap Salary", | |
"titleSlug": "swap-salary", | |
"topicTags": [ | |
{ | |
"name": "Database", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQz", | |
"slug": "database" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 45.18230362253522, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "628", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Maximum Product of Three Numbers", | |
"titleSlug": "maximum-product-of-three-numbers", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 49.389186335872104, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "629", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "K Inverse Pairs Array", | |
"titleSlug": "k-inverse-pairs-array", | |
"topicTags": [ | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 40.3097382316279, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "630", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Course Schedule III", | |
"titleSlug": "course-schedule-iii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 44.16844646671, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "631", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Design Excel Sum Formula", | |
"titleSlug": "design-excel-sum-formula", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Graph", | |
"id": "VG9waWNUYWdOb2RlOjI0", | |
"slug": "graph" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Topological Sort", | |
"id": "VG9waWNUYWdOb2RlOjI2", | |
"slug": "topological-sort" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 63.27698280765895, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "632", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Smallest Range Covering Elements from K Lists", | |
"titleSlug": "smallest-range-covering-elements-from-k-lists", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
}, | |
{ | |
"name": "Sliding Window", | |
"id": "VG9waWNUYWdOb2RlOjU1ODIx", | |
"slug": "sliding-window" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 36.57121127617503, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "633", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Sum of Square Numbers", | |
"titleSlug": "sum-of-square-numbers", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 41.88688927170766, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "634", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Find the Derangement of An Array", | |
"titleSlug": "find-the-derangement-of-an-array", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 60.16194057661687, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "635", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Design Log Storage System", | |
"titleSlug": "design-log-storage-system", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Ordered Set", | |
"id": "VG9waWNUYWdOb2RlOjYxMDcw", | |
"slug": "ordered-set" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 62.52450529097664, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "636", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Exclusive Time of Functions", | |
"titleSlug": "exclusive-time-of-functions", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 73.20232028481021, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "637", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Average of Levels in Binary Tree", | |
"titleSlug": "average-of-levels-in-binary-tree", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 51.80545441156015, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "638", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Shopping Offers", | |
"titleSlug": "shopping-offers", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
}, | |
{ | |
"name": "Memoization", | |
"id": "VG9waWNUYWdOb2RlOjMz", | |
"slug": "memoization" | |
}, | |
{ | |
"name": "Bitmask", | |
"id": "VG9waWNUYWdOb2RlOjYxMDc4", | |
"slug": "bitmask" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 30.857541417971774, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "639", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Decode Ways II", | |
"titleSlug": "decode-ways-ii", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 44.12117608333245, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "640", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Solve the Equation", | |
"titleSlug": "solve-the-equation", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Simulation", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU1", | |
"slug": "simulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 57.30651922412369, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "641", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Design Circular Deque", | |
"titleSlug": "design-circular-deque", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Queue", | |
"id": "VG9waWNUYWdOb2RlOjM0", | |
"slug": "queue" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 49.09528218339908, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "642", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Design Search Autocomplete System", | |
"titleSlug": "design-search-autocomplete-system", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Trie", | |
"id": "VG9waWNUYWdOb2RlOjI3", | |
"slug": "trie" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
}, | |
{ | |
"name": "Data Stream", | |
"id": "VG9waWNUYWdOb2RlOjYxMDYz", | |
"slug": "data-stream" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 43.8557970924761, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "643", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Maximum Average Subarray I", | |
"titleSlug": "maximum-average-subarray-i", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Sliding Window", | |
"id": "VG9waWNUYWdOb2RlOjU1ODIx", | |
"slug": "sliding-window" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 36.93424725294138, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "644", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Maximum Average Subarray II", | |
"titleSlug": "maximum-average-subarray-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Prefix Sum", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY4", | |
"slug": "prefix-sum" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 44.57506930615018, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "645", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Set Mismatch", | |
"titleSlug": "set-mismatch", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 60.18218608835326, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "646", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Maximum Length of Pair Chain", | |
"titleSlug": "maximum-length-of-pair-chain", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 70.63909463216997, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "647", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Palindromic Substrings", | |
"titleSlug": "palindromic-substrings", | |
"topicTags": [ | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 68.07445338133374, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "648", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Replace Words", | |
"titleSlug": "replace-words", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Trie", | |
"id": "VG9waWNUYWdOb2RlOjI3", | |
"slug": "trie" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 48.00989424827337, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "649", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Dota2 Senate", | |
"titleSlug": "dota2-senate", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
}, | |
{ | |
"name": "Queue", | |
"id": "VG9waWNUYWdOb2RlOjM0", | |
"slug": "queue" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 59.59026653345736, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "650", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "2 Keys Keyboard", | |
"titleSlug": "2-keys-keyboard", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 55.7713367890779, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "651", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "4 Keys Keyboard", | |
"titleSlug": "4-keys-keyboard", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 59.63736696886086, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "652", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Find Duplicate Subtrees", | |
"titleSlug": "find-duplicate-subtrees", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 61.56434023002242, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "653", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Two Sum IV - Input is a BST", | |
"titleSlug": "two-sum-iv-input-is-a-bst", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Binary Search Tree", | |
"id": "VG9waWNUYWdOb2RlOjMw", | |
"slug": "binary-search-tree" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 85.59755366753849, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "654", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Maximum Binary Tree", | |
"titleSlug": "maximum-binary-tree", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Divide and Conquer", | |
"id": "VG9waWNUYWdOb2RlOjEy", | |
"slug": "divide-and-conquer" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Monotonic Stack", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU0", | |
"slug": "monotonic-stack" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 64.58058888453732, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "655", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Print Binary Tree", | |
"titleSlug": "print-binary-tree", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 32.1747120254583, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "656", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Coin Path", | |
"titleSlug": "coin-path", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 75.9156015940568, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "657", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Robot Return to Origin", | |
"titleSlug": "robot-return-to-origin", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Simulation", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU1", | |
"slug": "simulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 47.79797923992382, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "658", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Find K Closest Elements", | |
"titleSlug": "find-k-closest-elements", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Sliding Window", | |
"id": "VG9waWNUYWdOb2RlOjU1ODIx", | |
"slug": "sliding-window" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 51.176100556115145, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "659", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Split Array into Consecutive Subsequences", | |
"titleSlug": "split-array-into-consecutive-subsequences", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 57.406034939121234, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "660", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Remove 9", | |
"titleSlug": "remove-9", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 67.57124924266124, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "661", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Image Smoother", | |
"titleSlug": "image-smoother", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 43.22103996691356, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "662", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Maximum Width of Binary Tree", | |
"titleSlug": "maximum-width-of-binary-tree", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 41.59787969092012, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "663", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Equal Tree Partition", | |
"titleSlug": "equal-tree-partition", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 61.166195800064074, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "664", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Strange Printer", | |
"titleSlug": "strange-printer", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 24.84191224720285, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "665", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Non-decreasing Array", | |
"titleSlug": "non-decreasing-array", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 62.48158640226629, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "666", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Path Sum IV", | |
"titleSlug": "path-sum-iv", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 60.26370302173413, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "667", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Beautiful Arrangement II", | |
"titleSlug": "beautiful-arrangement-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 52.170402552962436, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "668", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Kth Smallest Number in Multiplication Table", | |
"titleSlug": "kth-smallest-number-in-multiplication-table", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 66.29967905915733, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "669", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Trim a Binary Search Tree", | |
"titleSlug": "trim-a-binary-search-tree", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Search Tree", | |
"id": "VG9waWNUYWdOb2RlOjMw", | |
"slug": "binary-search-tree" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 49.02124537262363, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "670", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Maximum Swap", | |
"titleSlug": "maximum-swap", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 44.75810591822431, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "671", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Second Minimum Node In a Binary Tree", | |
"titleSlug": "second-minimum-node-in-a-binary-tree", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 50.13209077860753, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "672", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Bulb Switcher II", | |
"titleSlug": "bulb-switcher-ii", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 48.74232447301105, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "673", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Number of Longest Increasing Subsequence", | |
"titleSlug": "number-of-longest-increasing-subsequence", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Binary Indexed Tree", | |
"id": "VG9waWNUYWdOb2RlOjI4", | |
"slug": "binary-indexed-tree" | |
}, | |
{ | |
"name": "Segment Tree", | |
"id": "VG9waWNUYWdOb2RlOjI5", | |
"slug": "segment-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 50.52407581350984, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "674", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Longest Continuous Increasing Subsequence", | |
"titleSlug": "longest-continuous-increasing-subsequence", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 34.61650669545176, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "675", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Cut Off Trees for Golf Event", | |
"titleSlug": "cut-off-trees-for-golf-event", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 57.700657960256805, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "676", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Implement Magic Dictionary", | |
"titleSlug": "implement-magic-dictionary", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Trie", | |
"id": "VG9waWNUYWdOb2RlOjI3", | |
"slug": "trie" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 56.86853142916123, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "677", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Map Sum Pairs", | |
"titleSlug": "map-sum-pairs", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Trie", | |
"id": "VG9waWNUYWdOb2RlOjI3", | |
"slug": "trie" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 38.21734455666306, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "678", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Valid Parenthesis String", | |
"titleSlug": "valid-parenthesis-string", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 49.49255072974302, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "679", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "24 Game", | |
"titleSlug": "24-game", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 41.322580695198695, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "680", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Valid Palindrome II", | |
"titleSlug": "valid-palindrome-ii", | |
"topicTags": [ | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 46.806139506610606, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "681", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Next Closest Time", | |
"titleSlug": "next-closest-time", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
}, | |
{ | |
"name": "Enumeration", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY2", | |
"slug": "enumeration" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 77.25380293190123, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "682", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Baseball Game", | |
"titleSlug": "baseball-game", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Simulation", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU1", | |
"slug": "simulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 37.173183485522515, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "683", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "K Empty Slots", | |
"titleSlug": "k-empty-slots", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Indexed Tree", | |
"id": "VG9waWNUYWdOb2RlOjI4", | |
"slug": "binary-indexed-tree" | |
}, | |
{ | |
"name": "Segment Tree", | |
"id": "VG9waWNUYWdOb2RlOjI5", | |
"slug": "segment-tree" | |
}, | |
{ | |
"name": "Queue", | |
"id": "VG9waWNUYWdOb2RlOjM0", | |
"slug": "queue" | |
}, | |
{ | |
"name": "Sliding Window", | |
"id": "VG9waWNUYWdOb2RlOjU1ODIx", | |
"slug": "sliding-window" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
}, | |
{ | |
"name": "Ordered Set", | |
"id": "VG9waWNUYWdOb2RlOjYxMDcw", | |
"slug": "ordered-set" | |
}, | |
{ | |
"name": "Monotonic Queue", | |
"id": "VG9waWNUYWdOb2RlOjYxMDcx", | |
"slug": "monotonic-queue" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 63.444096493564714, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "684", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Redundant Connection", | |
"titleSlug": "redundant-connection", | |
"topicTags": [ | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Union Find", | |
"id": "VG9waWNUYWdOb2RlOjIz", | |
"slug": "union-find" | |
}, | |
{ | |
"name": "Graph", | |
"id": "VG9waWNUYWdOb2RlOjI0", | |
"slug": "graph" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 34.62038353439094, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "685", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Redundant Connection II", | |
"titleSlug": "redundant-connection-ii", | |
"topicTags": [ | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Union Find", | |
"id": "VG9waWNUYWdOb2RlOjIz", | |
"slug": "union-find" | |
}, | |
{ | |
"name": "Graph", | |
"id": "VG9waWNUYWdOb2RlOjI0", | |
"slug": "graph" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 35.59002437889056, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "686", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Repeated String Match", | |
"titleSlug": "repeated-string-match", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "String Matching", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUy", | |
"slug": "string-matching" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 41.88648798790193, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "687", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Longest Univalue Path", | |
"titleSlug": "longest-univalue-path", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 56.330251489635494, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "688", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Knight Probability in Chessboard", | |
"titleSlug": "knight-probability-in-chessboard", | |
"topicTags": [ | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 50.3345142216332, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "689", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Maximum Sum of 3 Non-Overlapping Subarrays", | |
"titleSlug": "maximum-sum-of-3-non-overlapping-subarrays", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 67.44966236008757, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "690", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Employee Importance", | |
"titleSlug": "employee-importance", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 49.16270678220212, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "691", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Stickers to Spell Word", | |
"titleSlug": "stickers-to-spell-word", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
}, | |
{ | |
"name": "Bitmask", | |
"id": "VG9waWNUYWdOb2RlOjYxMDc4", | |
"slug": "bitmask" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 58.43311812702127, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "692", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Top K Frequent Words", | |
"titleSlug": "top-k-frequent-words", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Trie", | |
"id": "VG9waWNUYWdOb2RlOjI3", | |
"slug": "trie" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
}, | |
{ | |
"name": "Bucket Sort", | |
"id": "VG9waWNUYWdOb2RlOjYxMDYw", | |
"slug": "bucket-sort" | |
}, | |
{ | |
"name": "Counting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDYy", | |
"slug": "counting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 62.90606719411883, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "693", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Binary Number with Alternating Bits", | |
"titleSlug": "binary-number-with-alternating-bits", | |
"topicTags": [ | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 61.62352766767029, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "694", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Number of Distinct Islands", | |
"titleSlug": "number-of-distinct-islands", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Union Find", | |
"id": "VG9waWNUYWdOb2RlOjIz", | |
"slug": "union-find" | |
}, | |
{ | |
"name": "Hash Function", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY1", | |
"slug": "hash-function" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": true | |
}, | |
{ | |
"acRate": 72.49690518517016, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "695", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Max Area of Island", | |
"titleSlug": "max-area-of-island", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Union Find", | |
"id": "VG9waWNUYWdOb2RlOjIz", | |
"slug": "union-find" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 65.67682550921377, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "696", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Count Binary Substrings", | |
"titleSlug": "count-binary-substrings", | |
"topicTags": [ | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 56.76641221374046, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "697", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Degree of an Array", | |
"titleSlug": "degree-of-an-array", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 38.159066808059386, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "698", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Partition to K Equal Sum Subsets", | |
"titleSlug": "partition-to-k-equal-sum-subsets", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Backtracking", | |
"id": "VG9waWNUYWdOb2RlOjE0", | |
"slug": "backtracking" | |
}, | |
{ | |
"name": "Bit Manipulation", | |
"id": "VG9waWNUYWdOb2RlOjE5", | |
"slug": "bit-manipulation" | |
}, | |
{ | |
"name": "Memoization", | |
"id": "VG9waWNUYWdOb2RlOjMz", | |
"slug": "memoization" | |
}, | |
{ | |
"name": "Bitmask", | |
"id": "VG9waWNUYWdOb2RlOjYxMDc4", | |
"slug": "bitmask" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 45.52047575303389, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "699", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Falling Squares", | |
"titleSlug": "falling-squares", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Segment Tree", | |
"id": "VG9waWNUYWdOb2RlOjI5", | |
"slug": "segment-tree" | |
}, | |
{ | |
"name": "Ordered Set", | |
"id": "VG9waWNUYWdOb2RlOjYxMDcw", | |
"slug": "ordered-set" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 80.59008484445184, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "700", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Search in a Binary Search Tree", | |
"titleSlug": "search-in-a-binary-search-tree", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Binary Search Tree", | |
"id": "VG9waWNUYWdOb2RlOjMw", | |
"slug": "binary-search-tree" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 73.66747146342388, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "701", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Insert into a Binary Search Tree", | |
"titleSlug": "insert-into-a-binary-search-tree", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Binary Search Tree", | |
"id": "VG9waWNUYWdOb2RlOjMw", | |
"slug": "binary-search-tree" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 72.33660884098899, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "702", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Search in a Sorted Array of Unknown Size", | |
"titleSlug": "search-in-a-sorted-array-of-unknown-size", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Interactive", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU5", | |
"slug": "interactive" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 59.23883557766763, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "703", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Kth Largest Element in a Stream", | |
"titleSlug": "kth-largest-element-in-a-stream", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Binary Search Tree", | |
"id": "VG9waWNUYWdOb2RlOjMw", | |
"slug": "binary-search-tree" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
}, | |
{ | |
"name": "Data Stream", | |
"id": "VG9waWNUYWdOb2RlOjYxMDYz", | |
"slug": "data-stream" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 58.37520427300744, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "704", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Binary Search", | |
"titleSlug": "binary-search", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 67.14727869811308, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "705", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Design HashSet", | |
"titleSlug": "design-hashset", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Hash Function", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY1", | |
"slug": "hash-function" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 65.59479819617661, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "706", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Design HashMap", | |
"titleSlug": "design-hashmap", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Hash Function", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY1", | |
"slug": "hash-function" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 28.462537038288175, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "707", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Design Linked List", | |
"titleSlug": "design-linked-list", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 36.58081000793107, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "708", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Insert into a Sorted Circular Linked List", | |
"titleSlug": "insert-into-a-sorted-circular-linked-list", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 83.65617872850135, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "709", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "To Lower Case", | |
"titleSlug": "to-lower-case", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 33.5773016792125, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "710", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Random Pick with Blacklist", | |
"titleSlug": "random-pick-with-blacklist", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
}, | |
{ | |
"name": "Randomized", | |
"id": "VG9waWNUYWdOb2RlOjYxMDc1", | |
"slug": "randomized" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 53.12930796801765, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "711", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Number of Distinct Islands II", | |
"titleSlug": "number-of-distinct-islands-ii", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Union Find", | |
"id": "VG9waWNUYWdOb2RlOjIz", | |
"slug": "union-find" | |
}, | |
{ | |
"name": "Hash Function", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY1", | |
"slug": "hash-function" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 65.25360624794362, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "712", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Minimum ASCII Delete Sum for Two Strings", | |
"titleSlug": "minimum-ascii-delete-sum-for-two-strings", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 51.775350564146926, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "713", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Subarray Product Less Than K", | |
"titleSlug": "subarray-product-less-than-k", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Sliding Window", | |
"id": "VG9waWNUYWdOb2RlOjU1ODIx", | |
"slug": "sliding-window" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 69.30183343537188, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "714", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Best Time to Buy and Sell Stock with Transaction Fee", | |
"titleSlug": "best-time-to-buy-and-sell-stock-with-transaction-fee", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 43.88717071855222, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "715", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Range Module", | |
"titleSlug": "range-module", | |
"topicTags": [ | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Segment Tree", | |
"id": "VG9waWNUYWdOb2RlOjI5", | |
"slug": "segment-tree" | |
}, | |
{ | |
"name": "Ordered Set", | |
"id": "VG9waWNUYWdOb2RlOjYxMDcw", | |
"slug": "ordered-set" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 45.078382754927965, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "716", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Max Stack", | |
"titleSlug": "max-stack", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Doubly-Linked List", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU4", | |
"slug": "doubly-linked-list" | |
}, | |
{ | |
"name": "Ordered Set", | |
"id": "VG9waWNUYWdOb2RlOjYxMDcw", | |
"slug": "ordered-set" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 45.20998714199192, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "717", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "1-bit and 2-bit Characters", | |
"titleSlug": "1-bit-and-2-bit-characters", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 50.97556170307689, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "718", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Maximum Length of Repeated Subarray", | |
"titleSlug": "maximum-length-of-repeated-subarray", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Sliding Window", | |
"id": "VG9waWNUYWdOb2RlOjU1ODIx", | |
"slug": "sliding-window" | |
}, | |
{ | |
"name": "Rolling Hash", | |
"id": "VG9waWNUYWdOb2RlOjU2NTk4", | |
"slug": "rolling-hash" | |
}, | |
{ | |
"name": "Hash Function", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY1", | |
"slug": "hash-function" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 45.33040319722802, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "719", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Find K-th Smallest Pair Distance", | |
"titleSlug": "find-k-th-smallest-pair-distance", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 52.75104515398324, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "720", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Longest Word in Dictionary", | |
"titleSlug": "longest-word-in-dictionary", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Trie", | |
"id": "VG9waWNUYWdOb2RlOjI3", | |
"slug": "trie" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 57.91929833184513, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "721", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Accounts Merge", | |
"titleSlug": "accounts-merge", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Union Find", | |
"id": "VG9waWNUYWdOb2RlOjIz", | |
"slug": "union-find" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 38.92796988011493, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "722", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Remove Comments", | |
"titleSlug": "remove-comments", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 76.94965500683723, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "723", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Candy Crush", | |
"titleSlug": "candy-crush", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Two Pointers", | |
"id": "VG9waWNUYWdOb2RlOjk=", | |
"slug": "two-pointers" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
}, | |
{ | |
"name": "Simulation", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU1", | |
"slug": "simulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 58.629726490676696, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "724", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Find Pivot Index", | |
"titleSlug": "find-pivot-index", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Prefix Sum", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY4", | |
"slug": "prefix-sum" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 69.92598442509484, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "725", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Split Linked List in Parts", | |
"titleSlug": "split-linked-list-in-parts", | |
"topicTags": [ | |
{ | |
"name": "Linked List", | |
"id": "VG9waWNUYWdOb2RlOjc=", | |
"slug": "linked-list" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 65.1864705341063, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "726", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Number of Atoms", | |
"titleSlug": "number-of-atoms", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Sorting", | |
"id": "VG9waWNUYWdOb2RlOjYxMDQ5", | |
"slug": "sorting" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 43.53285189787091, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "727", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Minimum Window Subsequence", | |
"titleSlug": "minimum-window-subsequence", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Sliding Window", | |
"id": "VG9waWNUYWdOb2RlOjU1ODIx", | |
"slug": "sliding-window" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 79.00998466981495, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "728", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Self Dividing Numbers", | |
"titleSlug": "self-dividing-numbers", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 56.58168609660562, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "729", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "My Calendar I", | |
"titleSlug": "my-calendar-i", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Segment Tree", | |
"id": "VG9waWNUYWdOb2RlOjI5", | |
"slug": "segment-tree" | |
}, | |
{ | |
"name": "Ordered Set", | |
"id": "VG9waWNUYWdOb2RlOjYxMDcw", | |
"slug": "ordered-set" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 46.007399043889784, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "730", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Count Different Palindromic Subsequences", | |
"titleSlug": "count-different-palindromic-subsequences", | |
"topicTags": [ | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 55.82478185735925, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "731", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "My Calendar II", | |
"titleSlug": "my-calendar-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Segment Tree", | |
"id": "VG9waWNUYWdOb2RlOjI5", | |
"slug": "segment-tree" | |
}, | |
{ | |
"name": "Prefix Sum", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY4", | |
"slug": "prefix-sum" | |
}, | |
{ | |
"name": "Ordered Set", | |
"id": "VG9waWNUYWdOb2RlOjYxMDcw", | |
"slug": "ordered-set" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 71.70951701807809, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "732", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "My Calendar III", | |
"titleSlug": "my-calendar-iii", | |
"topicTags": [ | |
{ | |
"name": "Binary Search", | |
"id": "VG9waWNUYWdOb2RlOjEx", | |
"slug": "binary-search" | |
}, | |
{ | |
"name": "Design", | |
"id": "VG9waWNUYWdOb2RlOjI1", | |
"slug": "design" | |
}, | |
{ | |
"name": "Segment Tree", | |
"id": "VG9waWNUYWdOb2RlOjI5", | |
"slug": "segment-tree" | |
}, | |
{ | |
"name": "Prefix Sum", | |
"id": "VG9waWNUYWdOb2RlOjYxMDY4", | |
"slug": "prefix-sum" | |
}, | |
{ | |
"name": "Ordered Set", | |
"id": "VG9waWNUYWdOb2RlOjYxMDcw", | |
"slug": "ordered-set" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 64.83991291325702, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "733", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Flood Fill", | |
"titleSlug": "flood-fill", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 44.419489837889365, | |
"difficulty": "Easy", | |
"freqBar": null, | |
"frontendQuestionId": "734", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Sentence Similarity", | |
"titleSlug": "sentence-similarity", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 44.70991307131414, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "735", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Asteroid Collision", | |
"titleSlug": "asteroid-collision", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Simulation", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU1", | |
"slug": "simulation" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 52.00072506457606, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "736", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Parse Lisp Expression", | |
"titleSlug": "parse-lisp-expression", | |
"topicTags": [ | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Recursion", | |
"id": "VG9waWNUYWdOb2RlOjMx", | |
"slug": "recursion" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 50.1988575236165, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "737", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Sentence Similarity II", | |
"titleSlug": "sentence-similarity-ii", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "String", | |
"id": "VG9waWNUYWdOb2RlOjEw", | |
"slug": "string" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Union Find", | |
"id": "VG9waWNUYWdOb2RlOjIz", | |
"slug": "union-find" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 48.379060967305385, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "738", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Monotone Increasing Digits", | |
"titleSlug": "monotone-increasing-digits", | |
"topicTags": [ | |
{ | |
"name": "Math", | |
"id": "VG9waWNUYWdOb2RlOjg=", | |
"slug": "math" | |
}, | |
{ | |
"name": "Greedy", | |
"id": "VG9waWNUYWdOb2RlOjE3", | |
"slug": "greedy" | |
} | |
], | |
"hasSolution": false, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 66.34973233671494, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "739", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Daily Temperatures", | |
"titleSlug": "daily-temperatures", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Stack", | |
"id": "VG9waWNUYWdOb2RlOjE1", | |
"slug": "stack" | |
}, | |
{ | |
"name": "Monotonic Stack", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU0", | |
"slug": "monotonic-stack" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 56.54661798767322, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "740", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Delete and Earn", | |
"titleSlug": "delete-and-earn", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Hash Table", | |
"id": "VG9waWNUYWdOb2RlOjY=", | |
"slug": "hash-table" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 37.26341401508024, | |
"difficulty": "Hard", | |
"freqBar": null, | |
"frontendQuestionId": "741", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Cherry Pickup", | |
"titleSlug": "cherry-pickup", | |
"topicTags": [ | |
{ | |
"name": "Array", | |
"id": "VG9waWNUYWdOb2RlOjU=", | |
"slug": "array" | |
}, | |
{ | |
"name": "Dynamic Programming", | |
"id": "VG9waWNUYWdOb2RlOjEz", | |
"slug": "dynamic-programming" | |
}, | |
{ | |
"name": "Matrix", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUz", | |
"slug": "matrix" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 46.493890498942584, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "742", | |
"isFavor": false, | |
"paidOnly": true, | |
"status": null, | |
"title": "Closest Leaf in a Binary Tree", | |
"titleSlug": "closest-leaf-in-a-binary-tree", | |
"topicTags": [ | |
{ | |
"name": "Tree", | |
"id": "VG9waWNUYWdOb2RlOjIw", | |
"slug": "tree" | |
}, | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Binary Tree", | |
"id": "VG9waWNUYWdOb2RlOjYxMDU3", | |
"slug": "binary-tree" | |
} | |
], | |
"hasSolution": true, | |
"hasVideoSolution": false | |
}, | |
{ | |
"acRate": 55.09227525050453, | |
"difficulty": "Medium", | |
"freqBar": null, | |
"frontendQuestionId": "743", | |
"isFavor": false, | |
"paidOnly": false, | |
"status": null, | |
"title": "Network Delay Time", | |
"titleSlug": "network-delay-time", | |
"topicTags": [ | |
{ | |
"name": "Depth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIx", | |
"slug": "depth-first-search" | |
}, | |
{ | |
"name": "Breadth-First Search", | |
"id": "VG9waWNUYWdOb2RlOjIy", | |
"slug": "breadth-first-search" | |
}, | |
{ | |
"name": "Graph", | |
"id": "VG9waWNUYWdOb2RlOjI0", | |
"slug": "graph" | |
}, | |
{ | |
"name": "Heap (Priority Queue)", | |
"id": "VG9waWNUYWdOb2RlOjYxMDUw", | |
"slug": "heap-priority-queue" | |
}, | |
{ | |
"name": "Shortest Path", | |
"id": "VG9waWNUYWdOb2RlOjYxMDc2", | |
"slug": "shortest-path" | |
} | |
], | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment