Skip to content

Commit a9c5533

Browse files
author
0x01f7
committed
style: comment
1 parent 47128f5 commit a9c5533

4 files changed

+35
-20
lines changed

algorithms/jump_game.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# https://leetcode.com/problems/jump-game/
22
#
3-
# Given an array of non-negative integers, you are initially positioned
4-
# at the first index of the array. Each element in the array represents
5-
# your maximum jump length at that position. Determine if you are able
6-
# to reach the last index.
3+
# Given an array of non-negative integers, you are initially positioned at the
4+
# first index of the array. Each element in the array represents your maximum
5+
# jump length at that position. Determine if you are able to reach the last
6+
# index.
77
#
88
# For example:
99
#

algorithms/jump_game_ii.rb

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# https://leetcode.com/problems/jump-game-ii/
22
#
3-
# Given an array of non-negative integers, you are initially positioned
4-
# at the first index of the array. Each element in the array represents
5-
# your maximum jump length at that position. Your goal is to reach the
6-
# last index in the minimum number of jumps.
3+
# Given an array of non-negative integers, you are initially positioned at the
4+
# first index of the array. Each element in the array represents your maximum
5+
# jump length at that position. Your goal is to reach the last index in the
6+
# minimum number of jumps.
77
#
88
# For example:
99
#
1010
# Given array A = [2,3,1,1,4]
11-
# The minimum number of jumps to reach the last index is 2. (Jump 1
12-
# step from index 0 to 1, then 3 steps to the last index.)
11+
# The minimum number of jumps to reach the last index is 2. (Jump 1 step
12+
# from index 0 to 1, then 3 steps to the last index.)
1313

1414

1515
# @param {Integer[]} nums

algorithms/kth_largest_element_in_an_array.rb

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
# https://leetcode.com/problems/kth-largest-element-in-an-array/
22
#
3-
# Find the kth largest element in an unsorted array. Note that it is
4-
# the kth largest element in the sorted order, not the kth distinct
5-
# element.
3+
# Find the kth largest element in an unsorted array. Note that it is the kth
4+
# largest element in the sorted order, not the kth distinct element.
65
#
76
# For example, Given [3,2,1,5,6,4] and k = 2, return 5.
87
#
9-
# Note: You may assume k is always valid, 1 ≤ k ≤ array's length.
8+
# Note:
9+
#
10+
# You may assume k is always valid, 1 ≤ k ≤ array's length.
11+
#
12+
# Credits:
13+
#
14+
# Special thanks to @mithmatt for adding this problem and creating all
15+
# test cases.
1016

1117

1218
# @param {Integer[]} nums

algorithms/kth_smallest_element_in_a_bst.rb

+15-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
11
# https://leetcode.com/problems/kth-smallest-element-in-a-bst/
22
#
3-
# Given a binary search tree, write a function kthSmallest to find the
4-
# kth smallest element in it.
3+
# Given a binary search tree, write a function kthSmallest to find the kth
4+
# smallest element in it.
55
#
6-
# Note: You may assume k is always valid, 1 ≤ k ≤ BST's total elements.
6+
# Note:
77
#
8-
# Follow up: What if the BST is modified (insert/delete operations)
9-
# often and you need to find the kth smallest frequently? How would
10-
# you optimize the kthSmallest routine?
8+
# You may assume k is always valid, 1 ≤ k ≤ BST's total elements.
9+
#
10+
# Follow up:
11+
#
12+
# What if the BST is modified (insert/delete operations) often and you
13+
# need to find the kth smallest frequently? How would you optimize the
14+
# kthSmallest routine?
15+
#
16+
# Credits:
17+
#
18+
# Special thanks to @ts for adding this problem and creating all test
19+
# cases.
1120

1221

1322
# Definition for a binary tree node.

0 commit comments

Comments
 (0)