当前位置:网站首页>[leetcode] reverse string [344]
[leetcode] reverse string [344]
2022-07-02 22:52:00 【When camellia flowers bloom.】
problem : Write a function , Its function is to invert the input string . Input string as character array s Given in the form of
Example 1
Input : s = ["h","e","l","l","o"]
Output : ["o","l","l","e","h"]
Example 2
Input : s = ["H","a","n","n","a","h"]
Output : ["h","a","n","n","a","H"]
Python3 Problem solving
# solution 1: Double pointer
def reverseString(s):
left, right = 0, len(s) - 1
while left < right:
s[left], s[right] = s[right], s[left]
left = left + 1
right = right - 1
return s
# solution 2
def reverseString(s):
s.reverse()
return s
# ['o', 'l', 'l', 'e', 'h']
reverseString(["h","e","l","l","o"])
# ['h', 'a', 'n', 'n', 'a', 'H']
reverseString(["H","a","n","n","a","h"])
边栏推荐
- Source code analysis - lightweight asynchronous crawler framework Ruia
- Methods of adding styles to native JS
- [LeetCode] 反转字符串中的单词 III【557】
- Mathematical modeling -- graph and network models and methods (I)
- SimpleITK使用——4. 奇怪的問題
- JS syntax ES6, ES7, es8, es9, ES10, es11, ES12 new features (Abstract)
- Solve the error of changing the selected file when uploading excel file. Net:: err_ UPLOAD_ FILE_ CHANGED
- Il n'est pas nécessaire d'appuyer longtemps sur la fonction de démarrage pour modifier Jelly [chapitre]
- 数据库系统概论第一章简答题-期末考得怎么样?
- 手写ORM(对象关系映射)增删改查
猜你喜欢
P7072 [CSP-J2020] 直播获奖
【板栗糖GIS】arcmap—为什么使用自定义捕捉的时候,经典捕捉的勾要去掉呢?
Mathematical modeling -- graph and network models and methods (I)
NC50965 Largest Rectangle in a Histogram
【外刊】睡眠与减肥
对象与对象变量
Source code analysis - lightweight asynchronous crawler framework Ruia
Build your own website (22)
[chestnut sugar GIS] ArcMap - how to batch modify the font, color, size, etc. of annotation elements
It's not easy to say I love you | use the minimum web API to upload files (swagger support) # yyds dry inventory #
随机推荐
[LeetCode] 回文数【9】
【板栗糖GIS】global mapper 如何通过dsm批量制作贴地等高线
全面解析分享购商业模式逻辑?分享购是如何赋能企业
杰理之充电拔出,无法触摸开机【篇】
位的高阶运算
Unity publishes a method of webgl playing sound
解决 excel 文件上传时更改选中的文件出现错误net::ERR_UPLOAD_FILE_CHANGED
Oracle-PL/SQL编程
性能优化----严苛模式
存储单位换算
手写ORM(对象关系映射)增删改查
Oracle-游标
NC24325 [USACO 2012 Mar S]Flowerpot
杰理之内置关机电流 1.2uA,之后不能长按开机【篇】
用sentinel熔断比例阈值改不了,设置慢调用比例没效果
NC50965 Largest Rectangle in a Histogram
百度智能云-创建人脸识别应用
Objects and object variables
Using rendertext() to output multiple lines of text with rendertext() in R shiny
NC50965 Largest Rectangle in a Histogram