As I suggested in another comment, it might be in general bad advice to try to get people to ask clairfying questions about non-contextual interview problems. If you want to measure social adeptness / willingness to ask…
20% is a very suprising number... Would something like this pass (maybe with some comments and test cases)? 1 @tailrec 2 def hasBalancedParens(s:String, open:Int):Boolean = { 3 if(s.length == 0) open==0 4 else…
As I suggested in another comment, it might be in general bad advice to try to get people to ask clairfying questions about non-contextual interview problems. If you want to measure social adeptness / willingness to ask…
20% is a very suprising number... Would something like this pass (maybe with some comments and test cases)? 1 @tailrec 2 def hasBalancedParens(s:String, open:Int):Boolean = { 3 if(s.length == 0) open==0 4 else…