You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Tiago Collot 03d42ac9a2 feat(hashcode): add README.md for new go exercise hashcode 1 year ago
..
README.md feat(hashcode): add README.md for new go exercise hashcode 1 year ago

README.md

hashcode

Instructions

Write a function called HashCode() that takes a string as an argument and returns a new hashed string.

  • Hash equation: (ASCII of current character + size of the string) % 127, so it can be in the limit of the ASCII size '127'.

  • If the final number gives an unprintable character, add 33.

Expected function

func HashCode(dec string) string {
}

Usage

Here is a possible program to test your function:

package main
import (
	"fmt"
	"piscine"
)
func main() {
	fmt.Println(piscine.HashCode("A"))
	fmt.Println(piscine.HashCode("AB"))
	fmt.Println(piscine.HashCode("BAC"))
	fmt.Println(piscine.HashCode("Hello World"))
}

And its output:

$ go run .
B
CD
EDF
Spwwz+bz}wo