ARTS: Algrothm: leetcode算法题目 Review: 阅读并且点评一篇英文技术文章 Tip/Techni: 学习一个技术技巧 Share: 分享一篇有观点和思考的技术文章 Algorithm [leetcode]Reverse String https://leetcode.com/problems/reverse-string/ 1)problem 编写一个以字符串作为输入并逆转字符串的函数. 2)answer 字符串大于0,就从最末尾开始取值. 3)solution #i…