Skip to content

Instantly share code, notes, and snippets.

@rwehresmann
Last active March 3, 2025 16:17
Show Gist options
  • Select an option

  • Save rwehresmann/0061606f4da8052c1786b15e81e42ad2 to your computer and use it in GitHub Desktop.

Select an option

Save rwehresmann/0061606f4da8052c1786b15e81e42ad2 to your computer and use it in GitHub Desktop.
class CustomSet
def initialize
@elements = []
end
def insert(element)
@elements << element unless includes?(element)
end
def includes?(element)
@elements.include?(element)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment