(x: int, y: int)
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | def ceil_div(x: int, y: int) -> int: |
| 16 | return (x + y - 1) // y |
| 17 | |
| 18 | |
| 19 | def pad_up(x: int, y: int) -> int: |
no outgoing calls