Con la ayuda del sympy.combinatorics.partitions.IntegerPartition().next_lex()
método, podemos obtener la siguiente partición del entero n en orden léxico usando el sympy.combinatorics.partitions.IntegerPartition().next_lex()
método.
Sintaxis:
sympy.combinatorics.partitions.IntegerPartition().next_lex()
Retorno: Retorna el valor léxico de la siguiente partición del entero n.
Ejemplo #1:
En este ejemplo, podemos ver que al usar el sympy.combinatorics.partitions.IntegerPartition().next_lex()
método, podemos obtener el valor léxico de la siguiente partición del entero n.
# import sympy and IntegerPartition from sympy.combinatorics.partitions import IntegerPartition from sympy import * # Using sympy.combinatorics.partitions.IntegerPartition().next_lex() method gfg = IntegerPartition([1, 2, 3]) print(gfg.next_lex())
Producción :
[3, 3]
Ejemplo #2:
# import sympy and IntegerPartition from sympy.combinatorics.partitions import IntegerPartition from sympy import * # Using sympy.combinatorics.partitions.IntegerPartition().next_lex() method gfg = IntegerPartition([1, 2, 3, 4, 3, 2, 1]) print(gfg.next_lex())
Producción :
[4, 3, 3, 2, 2, 2]
Publicación traducida automáticamente
Artículo escrito por Jitender_1998 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA