Skip to content

Commit 8530ac8

Browse files
author
0x01f7
committed
style: comment
1 parent c4b0e1f commit 8530ac8

24 files changed

+183
-163
lines changed

algorithms/same_tree.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# https://leetcode.com/problems/same-tree/
22
#
3-
# Given two binary trees, write a function to check if they are equal
4-
# or not. Two binary trees are considered equal if they are structurally
5-
# identical and the nodes have the same value.
3+
# Given two binary trees, write a function to check if they are equal or not.
4+
# Two binary trees are considered equal if they are structurally identical and
5+
# the nodes have the same value.
66

77

88
# Definition for a binary tree node.

algorithms/scramble_string.rb

+10-11
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# https://leetcode.com/problems/scramble-string/
22
#
3-
# Given a string s1, we may represent it as a binary tree by
4-
# partitioning it to two non-empty substrings recursively.
3+
# Given a string s1, we may represent it as a binary tree by partitioning it
4+
# to two non-empty substrings recursively.
55
#
66
# Below is one possible representation of s1 = "great":
77
#
@@ -13,9 +13,9 @@
1313
# / \
1414
# a t
1515
#
16-
# To scramble the string, we may choose any non-leaf node and swap
17-
# its two children. For example, if we choose the node "gr" and swap
18-
# its two children, it produces a scrambled string "rgeat".
16+
# To scramble the string, we may choose any non-leaf node and swap its two
17+
# children. For example, if we choose the node "gr" and swap its two children,
18+
# it produces a scrambled string "rgeat".
1919
#
2020
# rgeat
2121
# / \
@@ -25,9 +25,9 @@
2525
# / \
2626
# a t
2727
#
28-
# We say that "rgeat" is a scrambled string of "great". Similarly,
29-
# if we continue to swap the children of nodes "eat" and "at", it
30-
# produces a scrambled string "rgtae".
28+
# We say that "rgeat" is a scrambled string of "great". Similarly, if we
29+
# continue to swap the children of nodes "eat" and "at", it produces a
30+
# scrambled string "rgtae".
3131
#
3232
# rgtae
3333
# / \
@@ -37,9 +37,8 @@
3737
# / \
3838
# t a
3939
#
40-
# We say that "rgtae" is a scrambled string of "great". Given two
41-
# strings s1 and s2 of the same length, determine if s2 is a scrambled
42-
# string of s1.
40+
# We say that "rgtae" is a scrambled string of "great". Given two strings s1
41+
# and s2 of the same length, determine if s2 is a scrambled string of s1.
4342

4443

4544
# @param {String} s1

algorithms/search_a_2d_matrix.rb

+13-11
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,23 @@
11
# https://leetcode.com/problems/search-a-2d-matrix/
22
#
3-
# Write an efficient algorithm that searches for a value in an m x n
4-
# matrix. This matrix has the following properties:
3+
# Write an efficient algorithm that searches for a value in an m x n matrix.
4+
# This matrix has the following properties:
55
#
66
# + Integers in each row are sorted from left to right.
7-
# + The first integer of each row is greater than the last integer
8-
# of the previous row.
7+
# + The first integer of each row is greater than the last integer of the
8+
# previous row.
99
#
10-
# For example, Consider the following matrix:
10+
# For example:
1111
#
12-
# [
13-
# [1, 3, 5, 7],
14-
# [10, 11, 16, 20],
15-
# [23, 30, 34, 50]
16-
# ]
12+
# Consider the following matrix:
1713
#
18-
# Given target = 3, return true.
14+
# [
15+
# [1, 3, 5, 7],
16+
# [10, 11, 16, 20],
17+
# [23, 30, 34, 50]
18+
# ]
19+
#
20+
# Given target = 3, return true.
1921

2022

2123
# @param {Integer[][]} matrix

algorithms/search_a_2d_matrix_ii.rb

+14-12
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
11
# https://leetcode.com/problems/search-a-2d-matrix-ii/
22
#
3-
# Write an efficient algorithm that searches for a value in an m x n
4-
# matrix. This matrix has the following properties:
3+
# Write an efficient algorithm that searches for a value in an m x n matrix.
4+
# This matrix has the following properties:
55
#
66
# + Integers in each row are sorted in ascending from left to right.
77
# + Integers in each column are sorted in ascending from top to bottom.
88
#
9-
# For example, Consider the following matrix:
9+
# For example:
1010
#
11-
# [
12-
# [1, 4, 7, 11, 15],
13-
# [2, 5, 8, 12, 19],
14-
# [3, 6, 9, 16, 22],
15-
# [10, 13, 14, 17, 24],
16-
# [18, 21, 23, 26, 30]
17-
# ]
11+
# Consider the following matrix:
1812
#
19-
# Given target = 5, return true.
20-
# Given target = 20, return false.
13+
# [
14+
# [1, 4, 7, 11, 15],
15+
# [2, 5, 8, 12, 19],
16+
# [3, 6, 9, 16, 22],
17+
# [10, 13, 14, 17, 24],
18+
# [18, 21, 23, 26, 30]
19+
# ]
20+
#
21+
# Given target = 5, return true.
22+
# Given target = 20, return false.
2123

2224

2325
# @param {Integer[][]} matrix

algorithms/search_for_a_range.rb

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# https://leetcode.com/problems/search-for-a-range/
22
#
3-
# Given a sorted array of integers, find the starting and ending position
4-
# of a given target value. If the target is not found in the array,
5-
# return [-1, -1]. For example
3+
# Given a sorted array of integers, find the starting and ending position of a
4+
# given target value. If the target is not found in the array, return [-1, -1].
5+
#
6+
# For example:
67
#
78
# Given [5, 7, 7, 8, 8, 10] and target value 8, return [3, 4].
89
#

algorithms/search_in_rotated_sorted_array.rb

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
# https://leetcode.com/problems/search-in-rotated-sorted-array/
22
#
3-
# Suppose a sorted array is rotated at some pivot unknown to you
4-
# beforehand.
3+
# Suppose a sorted array is rotated at some pivot unknown to you beforehand.
54
#
65
# (i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2).
76
#
8-
# You are given a target value to search. If found in the array
9-
# return its index, otherwise return -1.
7+
# You are given a target value to search. If found in the array return its
8+
# index, otherwise return -1.
109
#
1110
# You may assume no duplicate exists in the array.
1211

algorithms/search_insert_position.rb

+7-9
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
# https://leetcode.com/problems/search-insert-position/
22
#
3-
# Given a sorted array and a target value, return the index if
4-
# the target is found. If not, return the index where it would
5-
# be if it were inserted in order.
6-
#
7-
# You may assume no duplicates in the array.
3+
# Given a sorted array and a target value, return the index if the target is
4+
# found. If not, return the index where it would be if it were inserted in
5+
# order. You may assume no duplicates in the array.
86
#
97
# Here are few examples.
108
#
11-
# [1,3,5,6], 5 -> 2
12-
# [1,3,5,6], 2 -> 1
13-
# [1,3,5,6], 7 -> 4
14-
# [1,3,5,6], 0 -> 0
9+
# [1, 3, 5, 6], 5 -> 2
10+
# [1, 3, 5, 6], 2 -> 1
11+
# [1, 3, 5, 6], 7 -> 4
12+
# [1, 3, 5, 6], 0 -> 0
1513

1614

1715
# @param {Integer[]} nums

algorithms/set_matrix_zeroes.rb

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
# https://leetcode.com/problems/set-matrix-zeroes/
22
#
3-
# Given a m x n matrix, if an element is 0, set its entire row
4-
# and column to 0. Do it in place.
3+
# Given a m x n matrix, if an element is 0, set its entire row and column to 0.
4+
# Do it in place.
55
#
6-
# Follow up: Did you use extra space? A straight forward solution
7-
# using O(mn) space is probably a bad idea. A simple improvement
8-
# uses O(m + n) space, but still not the best solution. Could you
9-
# devise a constant space solution?
6+
# Follow up: Did you use extra space? A straight forward solution using O(mn)
7+
# space is probably a bad idea. A simple improvement uses O(m + n) space, but
8+
# still not the best solution. Could you devise a constant space solution?
109

1110

1211
# @param {Integer[][]} matrix

algorithms/simplify_path.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# Given an absolute path for a file (Unix-style), simplify it.
44
#
5-
# For example,
5+
# For example:
66
#
77
# path = "/home/", => "/home"
88
# path = "/a/./b/../../c/", => "/c"

algorithms/single_number.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# https://leetcode.com/problems/single-number/
22
#
3-
# Given an array of integers, every element appears twice except for
4-
# one. Find that single one.
3+
# Given an array of integers, every element appears twice except for one. Find
4+
# that single one.
55
#
6-
# Note: Your algorithm should have a linear runtime complexity. Could
7-
# you implement it without using extra memory?
6+
# Note: Your algorithm should have a linear runtime complexity. Could you
7+
# implement it without using extra memory?
88

99

1010
# @param {Integer[]} nums

algorithms/single_number_ii.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# https://leetcode.com/problems/single-number-ii/
22
#
3-
# Given an array of integers, every element appears three times except
4-
# for one. Find that single one.
3+
# Given an array of integers, every element appears three times except for one.
4+
# Find that single one.
55
#
6-
# Note: Your algorithm should have a linear runtime complexity. Could
7-
# you implement it without using extra memory?
6+
# Note: Your algorithm should have a linear runtime complexity. Could you
7+
# implement it without using extra memory?
88

99

1010
# Limits on Integer Constants

algorithms/single_number_iii.rb

+12-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,24 @@
11
# https://leetcode.com/problems/single-number-iii/
22
#
3-
# Given an array of numbers nums, in which exactly two elements appear
4-
# only once and all the other elements appear exactly twice. Find the
5-
# two elements that appear only once.
3+
# Given an array of numbers nums, in which exactly two elements appear only
4+
# once and all the other elements appear exactly twice. Find the two elements
5+
# that appear only once.
66
#
7-
# For example: Given nums = [1, 2, 1, 3, 2, 5], return [3, 5].
7+
# For example:
88
#
9-
# Note:
9+
# Given nums = [1, 2, 1, 3, 2, 5], return [3, 5].
10+
#
11+
# Notes:
1012
#
1113
# + The order of the result is not important. So in the above example,
1214
# [5, 3] is also correct.
1315
# + Your algorithm should run in linear runtime complexity. Could you
1416
# implement it using only constant space complexity?
17+
#
18+
# Credits:
19+
#
20+
# Special thanks to @jianchao.li.fighter for adding this problem and
21+
# creating all test cases.
1522

1623

1724
# @param {Integer[]} nums

algorithms/sliding_window_maximum.rb

+13-9
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# https://leetcode.com/problems/sliding-window-maximum/
22
#
3-
# Given an array nums, there is a sliding window of size k which is
4-
# moving from the very left of the array to the very right. You can
5-
# only see the k numbers in the window. Each time the sliding
6-
# window moves right by one position.
3+
# Given an array nums, there is a sliding window of size k which is moving
4+
# from the very left of the array to the very right. You can only see the k
5+
# numbers in the window. Each time the sliding window moves right by one
6+
# position.
77
#
8-
# For example, Given nums = [1,3,-1,-3,5,3,6,7], and k = 3.
8+
# For example, Given nums = [1, 3, -1, -3, 5, 3, 6, 7], and k = 3.
99
#
1010
# Window position Max
1111
# --------------- -----
@@ -16,12 +16,16 @@
1616
# 1 3 -1 -3 [5 3 6] 7 6
1717
# 1 3 -1 -3 5 [3 6 7] 7
1818
#
19-
# Therefore, return the max sliding window as [3,3,5,5,6,7].
19+
# Therefore, return the max sliding window as [3, 3, 5, 5, 6, 7].
2020
#
21-
# Note: You may assume k is always valid, ie: 1 ≤ k ≤ input array's
22-
# size for non-empty array.
21+
# Note:
2322
#
24-
# Follow up: Could you solve it in linear time?
23+
# You may assume k is always valid, ie: 1 ≤ k ≤ input array's size for
24+
# non-empty array.
25+
#
26+
# Follow up:
27+
#
28+
# Could you solve it in linear time?
2529

2630

2731
class MonotonicQueue

algorithms/sort_colors.rb

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# https://leetcode.com/problems/sort-colors/
22
#
3-
# Given an array with n objects colored red, white or blue, sort them
4-
# so that objects of the same color are adjacent, with the colors in
5-
# the order red, white and blue.
3+
# Given an array with n objects colored red, white or blue, sort them so that
4+
# objects of the same color are adjacent, with the colors in the order red,
5+
# white and blue.
66
#
7-
# Here, we will use the integers 0, 1, and 2 to represent the color
8-
# red, white, and blue respectively.
7+
# Here, we will use the integers 0, 1, and 2 to represent the color red, white,
8+
# and blue respectively.
99
#
10-
# Note: You are not suppose to use the library's sort function for
11-
# this problem.
10+
# Note: You are not suppose to use the library's sort function for this
11+
# problem.
1212

1313

1414
# @param {Integer[]} nums

algorithms/spiral_matrix.rb

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# https://leetcode.com/problems/spiral-matrix/
22
#
3-
# Given a matrix of m x n elements (m rows, n columns), return all
4-
# elements of the matrix in spiral order.
3+
# Given a matrix of m x n elements (m rows, n columns), return all elements of
4+
# the matrix in spiral order.
55
#
66
# For example, Given the following matrix:
77
#
88
# [
9-
# [ 1, 2, 3 ],
10-
# [ 4, 5, 6 ],
11-
# [ 7, 8, 9 ]
9+
# [1, 2, 3],
10+
# [4, 5, 6],
11+
# [7, 8, 9]
1212
# ]
1313
#
14-
# You should return [1,2,3,6,9,8,7,4,5].
14+
# You should return [1, 2, 3, 6, 9, 8, 7, 4, 5].
1515

1616

1717
# @param {Integer[][]} matrix

algorithms/spiral_matrix_ii.rb

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# https://leetcode.com/problems/spiral-matrix-ii/
22
#
3-
# Given an integer n, generate a square matrix filled with elements
4-
# from 1 to n^2 in spiral order.
3+
# Given an integer n, generate a square matrix filled with elements from 1 to
4+
# n^2 in spiral order.
55
#
66
# For example, Given n = 3, You should return the following matrix:
77
#
88
# [
9-
# [ 1, 2, 3 ],
10-
# [ 8, 9, 4 ],
11-
# [ 7, 6, 5 ]
9+
# [1, 2, 3],
10+
# [8, 9, 4],
11+
# [7, 6, 5]
1212
# ]
1313

1414

0 commit comments

Comments
 (0)