Skip to content

Commit 061ae03

Browse files
author
0x01f7
committed
style: comment
1 parent a9c5533 commit 061ae03

12 files changed

+64
-54
lines changed

algorithms/largest_number.rb

+12-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
# https://leetcode.com/problems/largest-number/
22
#
3-
# Given a list of non negative integers, arrange them such that
4-
# they form the largest number.
3+
# Given a list of non negative integers, arrange them such that they form the
4+
# largest number.
55
#
6-
# For example, given [3, 30, 34, 5, 9], the largest formed number
7-
# is 9534330.
6+
# For example, given [3, 30, 34, 5, 9], the largest formed number is 9534330.
87
#
9-
# Note: The result may be very large, so you need to return a
10-
# string instead of an integer.
8+
# Note:
9+
#
10+
# The result may be very large, so you need to return a string instead of
11+
# an integer.
12+
#
13+
# Credits:
14+
#
15+
# Special thanks to @ts for adding this problem and creating all test
16+
# cases.
1117

1218

1319
# @param {Integer[]} nums

algorithms/largest_rectangle_in_histogram.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# https://leetcode.com/problems/largest-rectangle-in-histogram/
22
#
3-
# Given n non-negative integers representing the histogram's bar height
4-
# where the width of each bar is 1, find the area of largest rectangle
5-
# in the histogram.
3+
# Given n non-negative integers representing the histogram's bar height where
4+
# the width of each bar is 1, find the area of largest rectangle in the
5+
# histogram.
66
#
77
# 6
88
# ___

algorithms/length_of_last_word.rb

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
# https://leetcode.com/problems/length-of-last-word/
22
#
3-
# Given a string s consists of upper/lower-case alphabets and empty
4-
# space characters ' ', return the length of last word in the
5-
# string. If the last word does not exist, return 0.
3+
# Given a string s consists of upper/lower-case alphabets and empty space
4+
# characters ' ', return the length of last word in the string. If the last
5+
# word does not exist, return 0.
66
#
7-
# Note: A word is defined as a character sequence consists of non-space
8-
# characters only. For example,
7+
# For example:
98
#
109
# Given s = "Hello World", return 5.
10+
#
11+
# Note:
12+
#
13+
# A word is defined as a character sequence consists of non-space
14+
# characters only.
1115

1216

1317
# @param {String} s

algorithms/letter_combinations_of_a_phone_number.rb

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# https://leetcode.com/problems/letter-combinations-of-a-phone-number/
22
#
3-
# Given a digit string, return all possible letter combinations that
4-
# the number could represent.
3+
# Given a digit string, return all possible letter combinations that the
4+
# number could represent.
55
#
6-
# A mapping of digit to letters (just like on the telephone buttons)
7-
# is given below.
6+
# A mapping of digit to letters (just like on the telephone buttons) is given
7+
# below:
88
#
99
# 1() 2(abc) 3(def)
1010
# 4(ghi) 5(jkl) 6(mno)
@@ -14,8 +14,8 @@
1414
# Input: Digit string "23"
1515
# Output: ["ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf"].
1616
#
17-
# Note: Although the above answer is in lexicographical order, your
18-
# answer could be in any order you want.
17+
# Note: Although the above answer is in lexicographical order, your answer
18+
# could be in any order you want.
1919

2020

2121
# @param {String} digits

algorithms/longest_common_prefix.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# https://leetcode.com/problems/longest-common-prefix/
22
#
3-
# Write a function to find the longest common prefix string amongst
4-
# an array of strings.
3+
# Write a function to find the longest common prefix string amongst an array
4+
# of strings.
55

66

77
# @param {String[]} strs

algorithms/longest_consecutive_sequence.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
# Given an unsorted array of integers, find the length of the longest
44
# consecutive elements sequence.
55
#
6-
# For example, Given [100, 4, 200, 1, 3, 2], The longest consecutive
7-
# elements sequence is [1, 2, 3, 4]. Return its length: 4.
6+
# For example, Given [100, 4, 200, 1, 3, 2], The longest consecutive elements
7+
# sequence is [1, 2, 3, 4]. Return its length: 4.
88
#
99
# Your algorithm should run in O(n) complexity.
1010

algorithms/longest_palindromic_substring.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# https://leetcode.com/problems/longest-palindromic-substring/
22
#
3-
# Given a string S, find the longest palindromic substring in S. You
4-
# may assume that the maximum length of S is 1000, and there exists
5-
# one unique longest palindromic substring.
3+
# Given a string S, find the longest palindromic substring in S. You may
4+
# assume that the maximum length of S is 1000, and there exists one unique
5+
# longest palindromic substring.
66

77

88
# @param {String} s

algorithms/longest_substring_without_repeating_characters.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# https://leetcode.com/problems/longest-substring-without-repeating-characters/
22
#
3-
# Given a string, find the length of the longest substring without
4-
# repeating characters. For example, the longest substring without
5-
# repeating letters for "abcabcbb" is "abc", which the length is 3.
6-
# For "bbbbb" the longest substring is "b", with the length of 1.
3+
# Given a string, find the length of the longest substring without repeating
4+
# characters. For example, the longest substring without repeating letters for
5+
# "abcabcbb" is "abc", which the length is 3. For "bbbbb" the longest
6+
# substring is "b", with the length of 1.
77

88

99
# @param {String} s

algorithms/longest_valid_parentheses.rb

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# https://leetcode.com/problems/longest-valid-parentheses/
22
#
3-
# Given a string containing just the characters '(' and ')', find the
4-
# length of the longest valid (well-formed) parentheses substring.
3+
# Given a string containing just the characters '(' and ')', find the length
4+
# of the longest valid (well-formed) parentheses substring.
55
#
6-
# For "(()", the longest valid parentheses substring is "()", which
7-
# has length = 2. Another example is ")()())", where the longest valid
8-
# parentheses substring is "()()", which has length = 4.
6+
# For "(()", the longest valid parentheses substring is "()", which has
7+
# length = 2. Another example is ")()())", where the longest valid parentheses
8+
# substring is "()()", which has length = 4.
99

1010

1111
# @param {String} s

algorithms/lowest_common_ancestor_of_a_binary_search_tree.rb

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree/
22
#
3-
# Given a binary search tree (BST), find the lowest common ancestor (LCA)
4-
# of two given nodes in the BST. According to the definition of LCA on
5-
# Wikipedia: “The lowest common ancestor is defined between
6-
# two nodes v and w as the lowest node in T that has both v and w
7-
# as descendants (where we allow a node to be a descendant of itself).”
3+
# Given a binary search tree (BST), find the lowest common ancestor (LCA) of
4+
# two given nodes in the BST. According to the definition of LCA on Wikipedia:
5+
# “The lowest common ancestor is defined between two nodes v and w as the
6+
# lowest node in T that has both v and w as descendants (where we allow a node
7+
# to be a descendant of itself).”
88
#
99
# ----6----
1010
# / \
@@ -14,9 +14,9 @@
1414
# / \
1515
# 3 5
1616
#
17-
# For example, the lowest common ancestor (LCA) of nodes 2 and 8 is 6.
18-
# Another example is LCA of nodes 2 and 4 is 2, since a node can be a
19-
# descendant of itself according to the LCA definition.
17+
# For example, the lowest common ancestor (LCA) of nodes 2 and 8 is 6. Another
18+
# example is LCA of nodes 2 and 4 is 2, since a node can be a descendant of
19+
# itself according to the LCA definition.
2020

2121

2222
# Definition for a binary tree node.

algorithms/lowest_common_ancestor_of_a_binary_tree.rb

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-tree/
22
#
3-
# Given a binary tree, find the lowest common ancestor (LCA) of two
4-
# given nodes in the tree. According to the definition of LCA on
5-
# Wikipedia: "The lowest common ancestor is defined between two nodes
6-
# v and w as the lowest node in T that has both v and w as
7-
# descendants (where we allow a node to be a descendant of itself)."
3+
# Given a binary tree, find the lowest common ancestor (LCA) of two given
4+
# nodes in the tree. According to the definition of LCA on Wikipedia: "The
5+
# lowest common ancestor is defined between two nodes v and w as the lowest
6+
# node in T that has both v and w as descendants (where we allow a node to be
7+
# a descendant of itself)."
88
#
99
# ----3----
1010
# / \
@@ -14,9 +14,9 @@
1414
# / \
1515
# 7 4
1616
#
17-
# For example, the lowest common ancestor (LCA) of nodes 5 and 1 is 3.
18-
# Another example is LCA of nodes 5 and 4 is 5, since a node can be a
19-
# descendant of itself according to the LCA definition.
17+
# For example, the lowest common ancestor (LCA) of nodes 5 and 1 is 3. Another
18+
# example is LCA of nodes 5 and 4 is 5, since a node can be a descendant of
19+
# itself according to the LCA definition.
2020

2121

2222
# Definition for a binary tree node.

algorithms/lru_cache.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
# + get(key) - Get the value (will always be positive) of the key if the
77
# key exists in the cache, otherwise return -1.
88
# + set(key, value) - Set or insert the value if the key is not already
9-
# present. When the cache reached its capacity, it should invalidate
10-
# the least recently used item before inserting a new item.
9+
# present. When the cache reached its capacity, it should invalidate the
10+
# least recently used item before inserting a new item.
1111

1212

1313
class DoublyLinkedListNode

0 commit comments

Comments
 (0)