(asints: tuple[tuple[int, ...], ...])
| 714 | |
| 715 | |
| 716 | def inds_to_season_string(asints: tuple[tuple[int, ...], ...]) -> tuple[str, ...]: |
| 717 | inits = "JFMAMJJASOND" |
| 718 | return tuple("".join([inits[i_ - 1] for i_ in t]) for t in asints) |
| 719 | |
| 720 | |
| 721 | def is_sorted_periodic(lst): |
no test coverage detected
searching dependent graphs…