-
Notifications
You must be signed in to change notification settings - Fork 4
Home
ThomasWang_OldB edited this page Aug 18, 2022
·
2 revisions
Welcome to the python-docker-example wiki!
This repo serves to familiarize new employees with python and docker. Your task is to built & run the docker; create a python module/function and its unit test; build images.
- digit_search:
- retrieve_digits_as_strings(str) -> str: Uses RegEx to find all explicit digits in a string sentence and return a list of them.
- strings_list_to_digits_list(List[str]) -> List[int]: Converts a list of digits stored as strings to a list of integers.
- rotate_clockwise:
- rotate_clockwise(List[List[int]]) -> None: Rotate a nxn 2D int matrix 90 degrees clockwise in place.