Open In App

Python | Sympy partitions.RGS_unrank() method

Last Updated : 26 Aug, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
With the help of sympy.combinatorics.partitions.RGS_unrank() method, we can get the unranked growth string for a size passed as parameter in sympy.combinatorics.partitions.RGS_unrank() method.
Syntax : sympy.combinatorics.partitions.RGS_unrank() Return : Return a array of unranked growth string of size m.
Example #1 : In this example we can see that by using sympy.combinatorics.partitions.RGS_unrank() method, we are able to get the array of unranked growth string of size m. Python3 1=1
# import sympy and RGS_unrank
from sympy.combinatorics.partitions import RGS_unrank
from sympy import * 

x, y = symbols('x y')
  
# Using sympy.combinatorics.partitions.RGS_unrank method
gfg = RGS_unrank(51, 8)

print(gfg)
Output :
[0, 0, 0, 0, 1, 2, 3, 4]
Example #2 : Python3 1=1
# import sympy and RGS_unrank
from sympy.combinatorics.partitions import RGS_unrank
from sympy import * 

x, y = symbols('x y')
  
# Using sympy.combinatorics.partitions.RGS_unrank method
gfg = RGS_unrank(101, 10)

print(gfg)
Output :
[0, 0, 0, 0, 0, 1, 1, 1, 0, 2]

Next Article
Article Tags :
Practice Tags :

Similar Reads