Ajay Mishra

Results 7 comments of Ajay Mishra
trafficstars

Can you elaborate a bit more? The animation is just drawing rectangle by Hilbert curves, and the hilbert curve can be broken into different lines , you just meant that...

Time complexity alone doesn't capture the performance required in any kata, in reality constant factors and other subtleties should be considered. Two O(n) solution, one with single pass of entire...

Copy/pasted from one of the preloaded: ``` PURPOSE: This code blocks all attempts to import one of the targeted modules, in any of the following ways manners (here, for numpy):...

> the thing about the pwd to get the random module back in the tests doesn't work properly Can you please elaborate?

> As far as disabling a specific string, that's really meh Actually, I have found that disabling string intelligently is quite effective and easy method to forbid things, since in...

There is actually a better way to disable eval: delete it from the from `global`. By doing that you would get rid of function constructor and JSFuck stuffs(which obviously won't...

That's not the right way to use it on codewars. Include it as following: ```cpp #include ``` Example: ```cpp #include #include #include int func(){ std::vector vec = {4, 5, 6,...