
leetcode
li_super
挺住,意味着一切!
展开
-
【leetcode】11. Container With Most Water
Given n non-negative integers a1, a2, …, an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of line i is at (i, ai) and (i, 0). Find two lin原创 2017-11-24 17:16:23 · 213 阅读 · 0 评论 -
leetcode 679 24 Game
class Solution { private static final double E = 0.0001; public boolean judgePoint24(int[] nums) { if (nums == null || nums.length != 4) { return false; ...转载 2018-09-23 21:45:23 · 293 阅读 · 0 评论 -
563. Binary Tree Tilt
public class Solution { int result = 0; public int findTilt(TreeNode root) { postOrder(root); return result; } private int postOrder(TreeNode root) { ...原创 2018-09-26 15:28:17 · 128 阅读 · 0 评论 -
解题报告 13 Easy
https://leetcode.com/problems/roman-to-integer public static int singleCharToInt(char ch) { int num = 0; switch (ch) { case 'I': num = 1; break; case 'V': num = 5; break; case '...原创 2018-10-26 13:36:57 · 150 阅读 · 0 评论 -
Leetcode 解题 8 String to Integer (atoi)
Implement atoi which converts a string to an integer. The function first discards as many whitespace characters as necessary until the first non-whitespace character is found. Then, starting from this...原创 2018-10-27 21:36:41 · 176 阅读 · 0 评论 -
2019-02-05 回文数(Palindrome number) leetcode 解题指南
题目来源 public boolean isPalindrome(int x){ /* 回文数 */ boolean flag = true; String sx = String.valueOf(x); if(sx.length() == 0) return false; Character sign = sx...原创 2019-02-05 21:35:00 · 209 阅读 · 0 评论