We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 538b426 + 03393c9 commit f8d82f7Copy full SHA for f8d82f7
leetcode-ruby.gemspec
@@ -5,7 +5,7 @@ require 'English'
5
::Gem::Specification.new do |s|
6
s.required_ruby_version = '>= 3.0'
7
s.name = 'leetcode-ruby'
8
- s.version = '4.9.0'
+ s.version = '4.9.1'
9
s.license = 'MIT'
10
s.files = ::Dir['lib/**/*.rb'] + %w[bin/leetcode-ruby README.md LICENSE]
11
s.executable = 'leetcode-ruby'
lib/easy/705_design_hashset.rb
@@ -5,7 +5,6 @@ class MyHashSet
# Init
def initialize
@table = {}
- ::Set.new
end
# @param {Integer} key
0 commit comments