Published onApril 3, 2022[LeetCode 141] Linked List CycleLinkedListGiven `head`, the head of a linked list, determine if the linked list has a cycle in it.
Published onApril 2, 2022[LeetCode 140] Word Break IIDynamicProgrammingGiven a string `s` and a dictionary of strings `wordDict`, add spaces in `s` to construct a sentence where each word is a valid dictionary word.
Published onApril 1, 2022[LeetCode 139] Word BreakDynamicProgrammingGiven a string `s` and a dictionary of strings `wordDict`, return `true` if `s` can be segmented into a space-separated sequence of one or more dictionary words.
Published onMarch 31, 2022[LeetCode 138] Copy List with Random PointerLinkedListrandom pointer, which could point to any node in the list, or `null`.