Sha256: 0305749fce5f51108c431eb0a87537c72cdd4dba3825bf632476890c09359898

Contents?: true

Size: 163 Bytes

Versions: 1

Compression:

Stored size: 163 Bytes

Contents

module Zadt
  class LinkedListNode
    attr_accessor :val, :next
    def initialize(val = nil, next_ = nil)
      @val = val
      @next = next_
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
zadt-1.1.7 lib/zadt/AbstractDataTypes/LinkedList/LinkedList.rb