Skip to content

Commit 610bd2f

Browse files
committed
2024-01-24 v. 4.0.3.1: updated README.md
1 parent 604aff2 commit 610bd2f

15 files changed

+15
-15
lines changed

leetcode-ruby.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ require 'English'
55
::Gem::Specification.new do |s|
66
s.required_ruby_version = '>= 3.0'
77
s.name = 'leetcode-ruby'
8-
s.version = '4.0.3'
8+
s.version = '4.0.3.1'
99
s.license = 'MIT'
1010
s.files = ::Dir['lib/**/*.rb'] + %w[bin/leetcode-ruby README.md LICENSE]
1111
s.executable = 'leetcode-ruby'

lib/easy/1929_concatenation_of_array.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22

3-
# https://leetcode.com/problems/concatenation-of-array/description/
3+
# https://leetcode.com/problems/concatenation-of-array/
44
# @param {Integer[]} nums
55
# @return {Integer[]}
66
def get_concatenation(nums)

lib/easy/1935_maximum_number_of_words_you_can_type.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22

3-
# https://leetcode.com/problems/maximum-number-of-words-you-can-type/description/
3+
# https://leetcode.com/problems/maximum-number-of-words-you-can-type/
44
# @param {String} text
55
# @param {String} broken_letters
66
# @return {Integer}

lib/easy/1941_check_if_all_characters_have_equal_number_of_occurrences.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22

3-
# https://leetcode.com/problems/check-if-all-characters-have-equal-number-of-occurrences/description/
3+
# https://leetcode.com/problems/check-if-all-characters-have-equal-number-of-occurrences/
44
# @param {String} s
55
# @return {Boolean}
66
def are_occurrences_equal(s)

lib/easy/1952_three_divisors.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22

3-
# https://leetcode.com/problems/three-divisors/description/
3+
# https://leetcode.com/problems/three-divisors/
44
# @param {Integer} n
55
# @return {Boolean}
66
def is_three(n)

lib/easy/1957_delete_characters_to_make_fancy_string.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22

3-
# https://leetcode.com/problems/delete-characters-to-make-fancy-string/description/
3+
# https://leetcode.com/problems/delete-characters-to-make-fancy-string/
44
# @param {String} s
55
# @return {String}
66
def make_fancy_string(s)

lib/easy/1961_check_if_string_is_a_prefix_of_array.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22

3-
# https://leetcode.com/problems/check-if-string-is-a-prefix-of-array/description/
3+
# https://leetcode.com/problems/check-if-string-is-a-prefix-of-array/
44
# @param {String} s
55
# @param {String[]} words
66
# @return {Boolean}

lib/easy/1967_number_of_strings_that_appear_as_substrings_in_word.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22

3-
# https://leetcode.com/problems/number-of-strings-that-appear-as-substrings-in-word/description/
3+
# https://leetcode.com/problems/number-of-strings-that-appear-as-substrings-in-word/
44
# @param {String[]} patterns
55
# @param {String} word
66
# @return {Integer}

lib/easy/1971_find_if_path_exists_in_graph.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22

3-
# https://leetcode.com/problems/find-if-path-exists-in-graph/description/
3+
# https://leetcode.com/problems/find-if-path-exists-in-graph/
44
# @param {Integer} n
55
# @param {Integer[][]} edges
66
# @param {Integer} source

lib/easy/1974_minimum_time_to_type_word_using_special_typewriter.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22

3-
# https://leetcode.com/problems/minimum-time-to-type-word-using-special-typewriter/description/
3+
# https://leetcode.com/problems/minimum-time-to-type-word-using-special-typewriter/
44
# @param {String} word
55
# @return {Integer}
66
def min_time_to_type(word)

0 commit comments

Comments
 (0)