in reply to Re: RFC: 100 PDL Exercises (ported from numpy)
in thread RFC: 100 PDL Exercises (ported from numpy)

Duh. I found it on reddit. :-( Need more coffee.
  • Comment on Re^2: RFC: 100 PDL Exercises (ported from numpy)

Replies are listed 'Best First'.
Re^3: RFC: 100 PDL Exercises (ported from numpy)
by jtym (Novice) on Oct 28, 2018 at 01:40 UTC
      I see that there are 16 exercises marked with "N/A". IMO for these we could try finding equivalents in PDL. For example exercise 26 is to get output from this code:
      print(sum(range(5),-1)) from numpy import * print(sum(range(5),-1))
      I guess it should be possible to change the code to the equivalent in PDL. In this way it will become possible to solve all the exercises.

      Ask first, not after?

      The way forward always starts with a minimal test.