Skip to content

Commit eb24f5d

Browse files
committed
remove ex1 bonus one liner
1 parent e1c9ad9 commit eb24f5d

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

auto_build/BUILD.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
main_path = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
1111
dir_list = [
12-
# "c_01_intro_to_CV_and_Python",
12+
"c_01_intro_to_CV_and_Python",
1313
# "c_02a_basic_image_processing",
1414
# "c_02b_filtering_and_resampling",
1515
# "c_03_edge_detection",
@@ -18,7 +18,7 @@
1818
# "c_05_image_formation",
1919
# "c_06_geometric_transformation",
2020
# "c_07_camera_calibration",
21-
"c_08_features",
21+
# "c_08_features",
2222
# "c_09_stereo",
2323
# "c_10_neural_networks_basics",
2424
# "c_11_neural_networks_2",
-19 Bytes
Binary file not shown.

c_01_intro_to_CV_and_Python/ex1/ex1_1_basic_python.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ def pyramid_case(in_word):
1111

1212

1313
def pyramid_case_one_liner(in_word):
14-
# TODO: ~~~BONUS~~~
15-
# return the pyramid case word in one line of code inside the function.
14+
# TODO: return the pyramid case word in one line of code inside the function.
1615
# DO NOT USE ";" IN YOUR CODE.
1716
pass
1817

0 commit comments

Comments
 (0)