1 2 3 4 5 6 7 8 9 10 | public class Solution { public string RestoreString( string s, int [] indices) { var sb = new StringBuilder(); for (var i = 0; i < indices.Length; ++i) { var charPosition = Array.IndexOf(indices, i); sb.Append(s[charPosition]); } return sb.ToString(); } } |
"Simplicity can't be bought later, it must be earned from the start" -- DB
Monday, February 15, 2021
Leetcode Everyday: 1528. Shuffle String. Easy
Labels:
leetcode
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment