With the help of sympy.combinatorics.partitions.IntegerPartition() method, we can get the elements in an array of subarrays that is passed as parameters in sympy.combinatorics.Partition().rank method.
Syntax :
sympy.combinatorics.partitions.IntegerPartition()
Return : Return the partition of integer values.
Example #1 :
In this example we can see that by using sympy.combinatorics.partitions.IntegerPartition() method, we are able to get the partition of integer values.
# import sympy and IntegerPartition from sympy.combinatorics.partitions import IntegerPartition from sympy import *Â Â Â # Using sympy.combinatorics.partitions.IntegerPartition() method gfg = IntegerPartition([1] + [2, 3]) Â Â Â print(gfg) |
Output :
[3, 2, 1]
Example #2 :
# import sympy and IntegerPartition from sympy.combinatorics.partitions import IntegerPartition from sympy import *Â Â Â # Using sympy.combinatorics.partitions.IntegerPartition() method gfg = IntegerPartition([1] + [2, 3] + [4] + [5]) Â Â Â print(gfg) |
Output :
[5, 4, 3, 2, 1]
