Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ani03sha/RedQuarkTutorials
/ functions
Functions
377 in github.com/ani03sha/RedQuarkTutorials
⨍
Functions
377
◇
Types & classes
100
↓ 41 callers
Method
get
(K key)
Design/src/main/java/org/redquark/tutorials/design/caching/LFUCache.java:38
↓ 29 callers
Method
ListNode
(int val)
LeetCode/Java/src/main/java/org/redquark/tutorials/leetcode/AddTwoNumbers.java:65
↓ 20 callers
Method
has
(K key)
Design/src/main/java/org/redquark/tutorials/design/caching/LFUCache.java:34
↓ 20 callers
Method
set
(K key, V value)
Design/src/main/java/org/redquark/tutorials/design/caching/LFUCache.java:58
↓ 8 callers
Function
myAtoi
(s: str)
LeetCode/Python/src/String_To_Integer.py:6
↓ 8 callers
Method
print
(ListNode node)
LeetCode/Java/src/main/java/org/redquark/tutorials/leetcode/RemoveNthNodeFromEndOfList.java:36
↓ 7 callers
Function
isMatch
(s, p)
LeetCode/JavaScript/src/regular_expression_matching.js:1
↓ 7 callers
Function
myAtoi
(str)
LeetCode/JavaScript/src/string_to_integer.js:1
↓ 7 callers
Function
myAtoi
LeetCode/Kotlin/src/main/kotlin/org/redquark/tutorials/leetcode/StringToInteger.kt:3
↓ 7 callers
Method
myAtoi
(String str)
LeetCode/Java/src/main/java/org/redquark/tutorials/leetcode/StringToInteger.java:8
↓ 7 callers
Function
reverse
LeetCode/Kotlin/src/main/kotlin/org/redquark/tutorials/leetcode/ReverseInteger.kt:3
↓ 6 callers
Method
divide
LeetCode/Kotlin/src/main/kotlin/org/redquark/tutorials/leetcode/DivideTwoIntegers.kt:5
↓ 6 callers
Method
divide
(int dividend, int divisor)
LeetCode/Java/src/main/java/org/redquark/tutorials/leetcode/DivideTwoIntegers.java:8
↓ 6 callers
Function
isMatch
(s: str, p: str)
LeetCode/Python/src/Regular_Expression_Matching.py:6
↓ 6 callers
Function
isMatch
LeetCode/Kotlin/src/main/kotlin/org/redquark/tutorials/leetcode/RegularExpressionMatching.kt:3
↓ 6 callers
Method
isMatch
(String s, String p)
LeetCode/Java/src/main/java/org/redquark/tutorials/leetcode/RegularExpressionMatching.java:8
↓ 5 callers
Method
check
(int n)
ProblemSolving/src/main/java/org/redquark/tutorials/problemsolving/bitmagic/CheckEvenOrOdd.java:8
↓ 5 callers
Function
divide
(dividend, divisor)
LeetCode/JavaScript/src/divide_two_integers.js:1
↓ 5 callers
Function
findMedianSortedArrays
(nums1, nums2)
LeetCode/JavaScript/src/median_of_two_sorted_arrays.js:1
↓ 5 callers
Function
findMedianSortedArrays
(nums1: List[int], nums2: List[int])
LeetCode/Python/src/Median_Of_Two_Sorted_Arrays.py:8
↓ 5 callers
Function
findMedianSortedArrays
LeetCode/Kotlin/src/main/kotlin/org/redquark/tutorials/leetcode/MedianOfTwoSortedArrays.kt:3
↓ 5 callers
Method
findMedianSortedArrays
@param nums1 - first sorted array @param nums2 - second sorted array @return - median of two arrays
LeetCode/Java/src/main/java/org/redquark/tutorials/leetcode/MedianOfTwoSortedArrays.java:27
↓ 5 callers
Function
intToRoman
(num)
LeetCode/JavaScript/src/integer_to_roman.js:1
↓ 5 callers
Function
intToRoman
(num: int)
LeetCode/Python/src/Integer_To_Roman.py:6
↓ 5 callers
Function
intToRoman
LeetCode/Kotlin/src/main/kotlin/org/redquark/tutorials/leetcode/IntegerToRoman.kt:3
↓ 5 callers
Method
intToRoman
(int num)
LeetCode/Java/src/main/java/org/redquark/tutorials/leetcode/IntegerToRoman.java:8
↓ 5 callers
Function
isValid
(s)
LeetCode/JavaScript/src/valid_parentheses.js:1
↓ 5 callers
Function
isValid
(s: str)
LeetCode/Python/src/Valid_Parentheses.py:6
↓ 5 callers
Function
isValid
LeetCode/Kotlin/src/main/kotlin/org/redquark/tutorials/leetcode/ValidParentheses.kt:5
↓ 5 callers
Method
isValid
(String s)
LeetCode/Java/src/main/java/org/redquark/tutorials/leetcode/ValidParentheses.java:10
↓ 5 callers
Function
lengthOfLongestSubstring
(s)
LeetCode/JavaScript/src/longest_substring_without_repeating_characters.js:1
↓ 5 callers
Function
lengthOfLongestSubstring
(s: str)
LeetCode/Python/src/Longest_Substring_Without_Repeating_Characters.py:6
↓ 5 callers
Function
lengthOfLongestSubstring
LeetCode/Kotlin/src/main/kotlin/org/redquark/tutorials/leetcode/LongestSubstringWithoutRepeatingCharacters.kt:4
↓ 5 callers
Method
lengthOfLongestSubstring
@param s - given input string @return - length of longest substring without repeating characters
LeetCode/Java/src/main/java/org/redquark/tutorials/leetcode/LongestSubstringWithoutRepeatingCharacters.java:17
↓ 5 callers
Function
longestPalindrome
(s)
LeetCode/JavaScript/src/longest_palindromic_substring.js:1
↓ 5 callers
Function
longestPalindrome
(s: str)
LeetCode/Python/src/Longest_Palindromic_Substring.py:14
↓ 5 callers
Function
longestPalindrome
LeetCode/Kotlin/src/main/kotlin/org/redquark/tutorials/leetcode/LongestPalindromeSubstring.kt:3
↓ 5 callers
Method
longestPalindrome
(String s)
LeetCode/Java/src/main/java/org/redquark/tutorials/leetcode/LongestPalindromicSubstring.java:8
↓ 5 callers
Function
maxArea
(height)
LeetCode/JavaScript/src/container_with_most_water.js:1
↓ 5 callers
Function
maxArea
(height: List[int])
LeetCode/Python/src/Container_With_Most_Water.py:8
↓ 5 callers
Function
maxArea
LeetCode/Kotlin/src/main/kotlin/org/redquark/tutorials/leetcode/ContainerWithMostWater.kt:3
↓ 5 callers
Method
maxArea
@param height - input array of heights of lines @return maximum area
LeetCode/Java/src/main/java/org/redquark/tutorials/leetcode/ContainerWithMostWater.java:12
↓ 5 callers
Method
nextPermutation
LeetCode/Kotlin/src/main/kotlin/org/redquark/tutorials/leetcode/NextPermutation.kt:5
↓ 5 callers
Function
romanToInt
(s)
LeetCode/JavaScript/src/roman_to_integer.js:1
↓ 5 callers
Function
romanToInt
(s: str)
LeetCode/Python/src/Roman_To_Integer.py:6
↓ 5 callers
Function
romanToInt
LeetCode/Kotlin/src/main/kotlin/org/redquark/tutorials/leetcode/RomanToInteger.kt:3
↓ 5 callers
Method
romanToInt
(String s)
LeetCode/Java/src/main/java/org/redquark/tutorials/leetcode/RomanToInteger.java:11
↓ 4 callers
Method
check
(int a, int b)
ProblemSolving/src/main/java/org/redquark/tutorials/problemsolving/bitmagic/CheckOppositeSign.java:8
↓ 4 callers
Method
divide
(dividend: int, divisor: int)
LeetCode/Python/src/Divide_Two_Integers.py:8
↓ 4 callers
Function
findSubstring
(s, words)
LeetCode/JavaScript/src/substring_with_concatenation_of_all_words.js:1
↓ 4 callers
Method
findSubstring
(self, s: str, words: List[str])
LeetCode/Python/src/Substring_With_Concatenation_Of_All_Words.py:8
↓ 4 callers
Method
findSubstring
LeetCode/Kotlin/src/main/kotlin/org/redquark/tutorials/leetcode/SubstringWithConcatenationOfAllWords.kt:6
↓ 4 callers
Method
findSubstring
(String s, String[] words)
LeetCode/Java/src/main/java/org/redquark/tutorials/leetcode/SubstringWithConcatenationOfAllWords.java:13
↓ 4 callers
Function
fourSum
(nums, target)
LeetCode/JavaScript/src/four_sum.js:1
↓ 4 callers
Function
fourSum
(nums: List[int], target: int)
LeetCode/Python/src/Four_Sum.py:7
↓ 4 callers
Function
fourSum
LeetCode/Kotlin/src/main/kotlin/org/redquark/tutorials/leetcode/FourSum.kt:7
↓ 4 callers
Method
fourSum
(int[] nums, int target)
LeetCode/Java/src/main/java/org/redquark/tutorials/leetcode/FourSum.java:12
↓ 4 callers
Function
isPalindrome
(x)
LeetCode/JavaScript/src/palindrome_number.js:1
↓ 4 callers
Function
isPalindrome
(x: int)
LeetCode/Python/src/Palindrome_Number.py:6
↓ 4 callers
Function
isPalindrome
LeetCode/Kotlin/src/main/kotlin/org/redquark/tutorials/leetcode/PalindromeNumber.kt:3
↓ 4 callers
Method
isPalindrome
(int x)
LeetCode/Java/src/main/java/org/redquark/tutorials/leetcode/PalindromeNumber.java:8
↓ 4 callers
Function
maximumSum
ConceptOfTheDay/Kotlin/src/main/java/org/redquark/conceptoftheday/KadaneAlgorithm.kt:5
↓ 4 callers
Method
maximumSum
(int[] a)
ConceptOfTheDay/Java/src/main/java/org/redquark/conceptoftheday/KadaneAlgorithm.java:8
↓ 4 callers
Function
maximum_sum
(a)
ConceptOfTheDay/JavaScript/src/kadane_algorithm.js:1
↓ 4 callers
Function
maximum_sum
(a)
ConceptOfTheDay/Python/src/kadane_algorithm.py:6
↓ 4 callers
Function
mergeKLists
(lists)
LeetCode/JavaScript/src/merge_k_sorted_lists.js:1
↓ 4 callers
Function
nextPermutation
(nums)
LeetCode/JavaScript/src/next_permutation.js:17
↓ 4 callers
Function
nextPermutation
(nums: List[int])
LeetCode/Python/src/Next_Permutation.py:22
↓ 4 callers
Method
nextPermutation
@param nums - array of numbers
LeetCode/Java/src/main/java/org/redquark/tutorials/leetcode/NextPermutation.java:26
↓ 4 callers
Function
printList
(node)
LeetCode/JavaScript/src/reverse_nodes_in_k_group.js:56
↓ 4 callers
Method
printList
(headNode)
LeetCode/Python/src/Reverse_Nodes_In_K_Group.py:51
↓ 4 callers
Method
printList
LeetCode/Kotlin/src/main/kotlin/org/redquark/tutorials/leetcode/ReverseNodesInKGroup.kt:55
↓ 4 callers
Method
printList
(ListNode head)
LeetCode/Java/src/main/java/org/redquark/tutorials/leetcode/ReverseNodesInKGroup.java:58
↓ 4 callers
Method
reverse
(int x)
LeetCode/Java/src/main/java/org/redquark/tutorials/leetcode/ReverseInteger.java:8
↓ 4 callers
Function
reverseKGroup
(head, k)
LeetCode/JavaScript/src/reverse_nodes_in_k_group.js:1
↓ 4 callers
Method
reverseKGroup
(self, headNode: ListNode, k: int)
LeetCode/Python/src/Reverse_Nodes_In_K_Group.py:14
↓ 4 callers
Method
reverseKGroup
LeetCode/Kotlin/src/main/kotlin/org/redquark/tutorials/leetcode/ReverseNodesInKGroup.kt:5
↓ 4 callers
Method
reverseKGroup
(ListNode head, int k)
LeetCode/Java/src/main/java/org/redquark/tutorials/leetcode/ReverseNodesInKGroup.java:8
↓ 4 callers
Function
searchRange
(nums, target)
LeetCode/JavaScript/src/find_first_and_last_position_of_element_in_sorted_array.js:4
↓ 4 callers
Function
searchRange
(nums: List[int], target: int)
LeetCode/Python/src/Find_First_And_Last_Position_Of_Element_In_Sorted_Array.py:55
↓ 4 callers
Function
searchRange
LeetCode/Kotlin/src/main/kotlin/org/redquark/tutorials/leetcode/FindFirstAndLastPositionOfElementInSortedArray.kt:3
↓ 4 callers
Method
searchRange
(int[] nums, int target)
LeetCode/Java/src/main/java/org/redquark/tutorials/leetcode/FindFirstAndLastPositionOfElementInSortedArray.java:10
↓ 4 callers
Function
strStr
(haystack, needle)
LeetCode/JavaScript/src/implement_strstr.js:1
↓ 4 callers
Method
strStr
(haystack: str, needle: str)
LeetCode/Python/src/Implement_StrStr.py:8
↓ 4 callers
Method
strStr
LeetCode/Kotlin/src/main/kotlin/org/redquark/tutorials/leetcode/ImplementStrStr.kt:4
↓ 4 callers
Method
strStr
(String haystack, String needle)
LeetCode/Java/src/main/java/org/redquark/tutorials/leetcode/ImplementStrStr.java:8
↓ 4 callers
Function
swap
(nums, i, index)
LeetCode/JavaScript/src/next_permutation.js:59
↓ 3 callers
Method
addCount
(K key, int frequency)
Design/src/main/java/org/redquark/tutorials/design/caching/LFUCache.java:106
↓ 3 callers
Method
checkKthBit
(int n, int k)
ProblemSolving/src/main/java/org/redquark/tutorials/problemsolving/bitmagic/CheckKthBit.java:9
↓ 3 callers
Function
convert
(s, numRows)
LeetCode/JavaScript/src/zigzag_conversion.js:4
↓ 3 callers
Function
convert
(s: str, numRows: int)
LeetCode/Python/src/ZigZag_Conversion.py:6
↓ 3 callers
Function
convert
* @author Anirudh Sharma */
LeetCode/Kotlin/src/main/kotlin/org/redquark/tutorials/leetcode/ZigZagConversion.kt:6
↓ 3 callers
Method
count
(int n)
ProblemSolving/src/main/java/org/redquark/tutorials/problemsolving/bitmagic/CountSetBitsInANumber.java:5
↓ 3 callers
Function
generateParenthesis
(n)
LeetCode/JavaScript/src/generate_parentheses.js:1
↓ 3 callers
Function
generateParenthesis
(n: int)
LeetCode/Python/src/Generate_Parentheses.py:20
↓ 3 callers
Function
generateParenthesis
LeetCode/Kotlin/src/main/kotlin/org/redquark/tutorials/leetcode/GenerateParentheses.kt:3
↓ 3 callers
Method
generateParenthesis
(int n)
LeetCode/Java/src/main/java/org/redquark/tutorials/leetcode/GenerateParentheses.java:11
↓ 3 callers
Method
isPowerOfTwo
(long n)
ProblemSolving/src/main/java/org/redquark/tutorials/problemsolving/bitmagic/PowerOfTwo.java:9
↓ 3 callers
Function
letterCombinations
(digits)
LeetCode/JavaScript/src/letter_combinations_of_a_phone_number.js:1
↓ 3 callers
Function
letterCombinations
(digits: str)
LeetCode/Python/src/Letter_Combinations_Of_A_Phone_Number.py:19
next →
1–100 of 377, ranked by callers