a904: 翻转字符串里的单词
Tags :
Accepted rate : 39人/49人 ( 80% ) [非即時]
評分方式:
Strictly

最近更新 : 2022-12-02 13:52

Content

给你一个字符串 s ,逐个翻转字符串中的所有 单词 。

单词 是由非空格字符组成的字符串。s 中使用至少一个空格将字符串中的 单词 分隔开。

请你返回一个翻转 s 中单词顺序并用单个空格相连的字符串。

Input

输入字符串 s 可以在前面、后面或者单词间包含多余的空格。

Output

翻转后单词间应当仅用一个空格分隔。翻转后的字符串中不应包含额外的空格。

Sample Input #1
the sky is blue
Sample Output #1
blue is sky the
Sample Input #2
  hello world  
Sample Output #2
world hello
Sample Input #3
a good   example
Sample Output #3
example good a
Sample Input #4
  Bob    Loves  Alice   
Sample Output #4
Alice Loves Bob
Sample Input #5
Alice does not even like bob
Sample Output #5
bob like even not does Alice
測資資訊:
記憶體限制: 64 MB
不公開 測資點#0 (20%): 1.0s , <1K
不公開 測資點#1 (20%): 1.0s , <1K
不公開 測資點#2 (20%): 1.0s , <1K
不公開 測資點#3 (20%): 1.0s , <1K
不公開 測資點#4 (20%): 1.0s , <1K
Hint :
Tags:
出處:
[管理者:
ricky (電腦黃)
]


ID User Problem Subject Hit Post Date
沒有發現任何「解題報告」