Open In App

Python | Sympy partitions.RGS_unrank() method

Last Updated : 26 Aug, 2019
Improve
Improve
Like Article
Like
Save
Share
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.




# 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 :




# 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]


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads