Skip to content

Files

Latest commit

 

History

History
25 lines (20 loc) · 577 Bytes

README.md

File metadata and controls

25 lines (20 loc) · 577 Bytes

This is an outside review I absolutely smashed. Recording uploaded here: https://youtu.be/4xnr2CKHXZ0 I was rated strong on every single point of the development process

Below is my information gathering

Brief//SystemModel:

  • digital audio workstation plugins
  • band pass filter
  • three inputs: musicTrack, lowerLimit, upperLimit
  • lowerLimit=40, upperLimit=1000

Input => Output

[60,10,45,60,1500],20,50 => [50,20,45,50,50]
[10, 1500] => [40, 1000]

edgecases:

[-15], 20, 50 => *Value Error*
"Hello", 20, 50 => *Argument Error*
["Hello"] => *Argument Error*