ten_simple_coding_tests:受https启发 源码
编码面试之前要解决的10种算法 受本文启发 1.反向整数 给定一个整数,则返回带有反转数字的整数。 注意:整数可以是正数或负数。 -231 => -132 345 => 543 解决方案def solution ( n ): return f'- { str ( n )[ 1 :][:: - 1 ] } ' if n < 0 else str ( n )[:: - 1 ] 2.平均单词长度 对于给定的句子,返回平均单词长度。 注意:切记先删除标点符号。 sentence1 = "Hi all, my name is Tom...I am originally from Australia." sentence2 = "I need to work very hard to learn more about algorithms in Python!" assert so
文件列表
ten_simple_coding_tests-master.zip
(预估有个2文件)
ten_simple_coding_tests-master
README.md
7KB
LICENSE
1KB
暂无评论