Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/HuberTRoy/leetCode
/ functions
Functions
332 in github.com/HuberTRoy/leetCode
⨍
Functions
332
◇
Types & classes
177
Method
sortColors
:type nums: List[int] :rtype: void Do not return anything, modify nums in-place instead.
Array/SortColors.py:56
Method
sortList
:type head: ListNode :rtype: ListNode
Sorted/SortList.py:119
Method
sortedArrayToBST
:type nums: List[int] :rtype: TreeNode
Tree/ConvertSortedArrayToBinarySearchTree.py:54
Method
sortedListToBST
:type head: ListNode :rtype: TreeNode
Tree/ConvertSortedListToBinarySearchTree.py:115
Method
spiralOrder
:type matrix: List[List[int]] :rtype: List[int]
Array/SpiralMatrix.py:121
Method
startsWith
Returns if there is any word in the trie that starts with the given prefix. :type prefix: str :rtype: bool
Tree/Trie.py:91
Method
strStr
:type haystack: str :type needle: str :rtype: int
String/ImplementStrStr().py:43
Method
subarrayBitwiseORs
:type A: List[int] :rtype: int
DP/BitwiseORsOfSubarray.py:70
Method
subarraySum
:type nums: List[int] :type k: int :rtype: int
Array/SubarraySumEqualsK.py:27
Method
subsets
:type nums: List[int] :rtype: List[List[int]]
Backtracking/subsets.py:32
Method
sumNumbers
:type root: TreeNode :rtype: int
Tree/SumRootToLeafNumbers.py:53
Method
sumSubarrayMins
:type A: List[int] :rtype: int
Array/SumOfSubarrayMinimums.py:113
Method
surfaceArea
:type grid: List[List[int]] :rtype: int
Array/SurfaceAreaOf3DShapes.py:51
Method
thirdMax
:type nums: List[int] :rtype: int
Array/ThirdMaximumNumbers.py:42
Method
threeSumMulti
:type A: List[int] :type target: int :rtype: int
Array/3SumWithMultiplicity.py:81
Method
toLowerCase
:type str: str :rtype: str
String/ToLowerCase.py:19
Method
topKFrequent
:type nums: List[int] :type k: int :rtype: List[int]
Array/TopKFrequentElements.py:29
Method
totalFruit
:type tree: List[int] :rtype: int
Array/FruitIntoBaskets.py:96
Method
translate_o_to_e
(x, y)
Array/SurroundedRegions.py:81
Method
translate_pattern
(word)
String/FindAndReplacePattern.py:51
Method
trap
:type height: List[int] :rtype: int
Stack/TrappingRainWater.py:86
Function
twoSum
(nums, target)
Array/twoSum.js:7
Method
twoSum
(self, nums, target)
Array/two_sum.py:45
Method
twoSum
:type numbers: List[int] :type target: int :rtype: List[int]
Array/TwoSumIIAlreadySorted.py:24
Method
uniquePaths
:type m: int :type n: int :rtype: int
DP/UniquePath.py:54
Method
uniquePathsWithObstacles
:type obstacleGrid: List[List[int]] :rtype: int
DP/UniquePathII.py:84
Method
up
(x, y)
Array/SpiralMatrixII.py:97
Method
wiggleSort
:type nums: List[int] :rtype: void Do not return anything, modify nums in-place instead.
Sorted/WiggleSortII.py:59
Method
wordBreak
:type s: str :type wordDict: List[str] :rtype: bool
DP/WordBreak.py:57
Method
wordPattern
:type pattern: str :type str: str :rtype: bool
String/WordPattern.py:36
Method
wordSubsets
:type A: List[str] :type B: List[str] :rtype: List[str]
Array/WordSubsets.py:62
Method
zigzagLevelOrder
:type root: TreeNode :rtype: List[List[int]]
BFS/BinaryTreeZigzagLevelOrderTraversal.py:40
← previous
301–332 of 332, ranked by callers