0
votes
Stack overflow code golf
recursion is old hat. here is mutual recursion. kick off by calling either function.
a()
{
b();
}
b()
{
a();
}
PS: but you were asking for shortest way.. …
0
votes
How do you retrofit unit tests into a code base ?
Is it possible that we are in a panic and are getting confused between unit tests and performance tests? Is it that your application works fine with few users, but starts throwing errors when unde …
