尼见
尼见
全部文章
题解
归档
标签
去牛客网
登录
/
注册
尼见的博客
全部文章
/ 题解
(共4篇)
牛客题霸--求平方根题解
求平方根https://www.nowcoder.com/practice/09fbfb16140b40499951f55113f2166c public int mysqrt (int x) { // write code here String result = ne...
2020-11-04
0
778
牛客题霸--反转字符串题解
反转字符串https://www.nowcoder.com/practice/c3a6afee325e472386a1c4eb1ef987f3 public String solve (String str) { // write code here // write...
2020-11-03
1
621
牛客题霸--反转链表题解
反转链表https://www.nowcoder.com/practice/75e878df47f24fdc9dc3e400ec6058ca java版本答案:public class Solution { public ListNode ReverseList(ListNode head) ...
2020-11-03
0
525
牛客题霸--两数之和题解
public int[] twoSum (int[] numbers, int target) { int[]...
2020-11-02
0
746