Skip to content

Instantly share code, notes, and snippets.

@preyes323
Last active January 15, 2018 14:50
Show Gist options
  • Save preyes323/dc2ed9560b132a4219fa3b6bd8940b39 to your computer and use it in GitHub Desktop.
Save preyes323/dc2ed9560b132a4219fa3b6bd8940b39 to your computer and use it in GitHub Desktop.

Validation

Example 1

Inputs:

  • Target number: 20
  • Factors: [3, 5]

Output

  • 78

Example 2

Inputs:

  • Target number: 20
  • Factors: [3]

Output

  • 63

Example 3

Inputs:

  • Target number: 20
  • Factors: [5]

Output

  • 30

Example 4

Inputs:

  • Target number: 20
  • Factors: []

Output

  • 78

Example 5

Inputs:

  • Target number: 1
  • Factors: []

Output

  • 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment