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.
 
 
 
 
 
 
Augusto a6f7ce3c30 Fix grammar in exercise `enigma` 3 years ago
..
README.md Fix grammar in exercise `enigma` 3 years ago

README.md

enigma

Instructions

Write a function called Enigma that receives pointers as arguments and move its values around to hide them.

This function will put :

  • a into c.
  • c into d.
  • d into b.
  • b into a.

Expected function

func Enigma(a ***int, b *int, c *******int, d ****int) {

}

Usage

Here is a possible program to test your function :

package main

import (
	"fmt"
	"piscine"
)

func main() {
	x := 5
	y := &x
	z := &y
	a := &z

	w := 2
	b := &w

	u := 7
	e := &u
	f := &e
	g := &f
	h := &g
	i := &h
	j := &i
	c := &j

	k := 6
	l := &k
	m := &l
	n := &m
	d := &n

	fmt.Println(***a)
	fmt.Println(*b)
	fmt.Println(*******c)
	fmt.Println(****d)

	piscine.Enigma(a, b, c, d)

	fmt.Println("After using Enigma")
	fmt.Println(***a)
	fmt.Println(*b)
	fmt.Println(*******c)
	fmt.Println(****d)

}

And its output :

$ go run .
5
2
7
6
After using Enigma
2
6
5
7
$