30 Days of Code - Day 14: Scope

Coding challenges are a great resource for learning coding techniques and improve analytical thinking, this is a collection of challenges from different platforms.

Objective

Today we’re discussing scope. Check out the Tutorial tab for learning materials and an instructional video!

The absolute difference between two integers, a and b, is written as |a - b|. The maximum absolute difference between two integers in a set of positive integers, elements, is the largest absolute difference between any two integers in elements.

The Difference class is started for you in the editor. It has a private integer array (elements) for storing N non-negative integers, and a public integer (maximumDifference) for storing the maximum absolute difference.

Task

Complete the Difference class by writing the following:

  • A class constructor that takes an array of integers as a parameter and saves it to the elements instance variable.

  • A computeDifference method that finds the maximum absolute difference between any 2 numbers in N and stores it in the maximumDifference instance variable.

Input Format

You are not responsible for reading any input from stdin. The locked Solution class in your editor reads in lines of input; the first line contains N, and the second line describes the elements array.

Constraints:

  • 1 <= N <= 10
  • 1 <= elements[i] <= 100, where 0 <= i <= N - 1

Output Format

You are not responsible for printing any output; the Solution class will print the value of the maximumDifference instance variable.

Sample 00

input00.txt
3
1 2 5
output00.txt
4

Explanation

The scope of the elements array and maximumDifference integer is the entire class instance. The class constructor saves the argument passed to the constructor as the elements instance variable (where the computeDifference method can access it).

To find the maximum difference, computeDifference checks each element in the array and finds the maximum difference between any 2 elements:

|1 - 2| = 1

|1 - 5| = 4

|2 - 5| = 3

The maximum of these differences is 4, so it saves the value 4 as the maximumDifference instance variable. The locked stub code in the editor then prints the value stored as maximumDifference, which is 4.

Solution

main.go
package main

import "fmt"

func main() {
  var N int

  fmt.Scan(&N)
  elements := make([]int, N)

  for i := 0; i < N; i++ {
    fmt.Scan(&elements[i])
  }

  d := NewDifference(elements)
  d.ComputeDifference()
  fmt.Println(d.MaximumDifference)
}

type Difference struct {
  MaximumDifference int

  elements []int
}

func NewDifference(a []int) *Difference {
  na := make([]int, len(a))
  copy(na, a)
  return &Difference{0, na}
}

func (d *Difference) ComputeDifference() {
  for i, l := 0, len(d.elements); i < l-1; i++ {
    for j := i + 1; j < l; j++ {
      r := abs(d.elements[i] - d.elements[j])
      if r > d.MaximumDifference {
        d.MaximumDifference = r
      }
    }
  }
}

func abs(n int) int {
  if n < 0 {
    return n * -1
  }

  return n
}