mirror of https://github.com/01-edu/public.git
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.
46 lines
758 B
46 lines
758 B
2 years ago
|
## 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
|
||
|
|
||
|
```go
|
||
|
func HashCode(dec string) string {
|
||
|
}
|
||
|
```
|
||
|
|
||
|
### Usage
|
||
|
|
||
|
Here is a possible program to test your function:
|
||
|
|
||
|
```go
|
||
|
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:
|
||
|
|
||
|
```console
|
||
|
$ go run .
|
||
|
B
|
||
|
CD
|
||
|
EDF
|
||
|
Spwwz+bz}wo
|
||
|
```
|