Ruby | Función array hash()

El hash() es un método incorporado en Ruby que devuelve el código hash de la array.

Sintaxis : mat1. hash()
Parámetros : La función no acepta ningún parámetro.
Valor devuelto : Devuelve el código hash de la array.

Ejemplo 1 :  

Ruby

# Ruby program for hash() method in Matrix
  
# Include matrix
require "matrix"
 
# Initializes the matrix
mat1 = Matrix[[12, 21], [31, 12]]
  
# Prints the hash-code
puts  mat1.hash()

Salida

631900695216402634

Ejemplo 2 :  

Ruby

# Ruby program for hash() method in Matrix
  
# Include matrix
require "matrix"
 
# Initializes the matrix
mat1 = Matrix[[6, 7], [9, 10], [12, 4]]
  
# Prints the hash-code
puts  mat1.hash()

Salida

-1308023948917233670]

Publicación traducida automáticamente

Artículo escrito por gopaldave y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *