here is my code and the error i am getting.
quicksort(low:number,high:number){
if(low<high){
let pi=this.partition(low,high);
this.quicksort(low,pi-1);
}
}
partition(low:number,high:number){
/* my partition logic*/
}
What is it that i have to do ? Is it not possible to declare local variables of a number type in typescript?
