摘要: 在原字符串中把字符串尾部的m个字符移动到字符串的头部。 java / Definition for singly linked list. public class ListNode { int val; ListNode next; ListNode(int x) { val = x; } } / 阅读全文
posted @ 2019-07-14 18:40 Roni_i 阅读(347) 评论(0) 推荐(0) 编辑
摘要: Given two binary strings, return their sum (also a binary string). The input strings are both non empty and contains only characters 1 or 0. Example 1 阅读全文
posted @ 2019-07-14 15:40 Roni_i 阅读(147) 评论(0) 推荐(0) 编辑