原创 LAYA LIST超出不隱藏BUG

  LAYA list怎麼都不隱藏,原因是vScrollBarSkin 或者 hScrollBarSkin沒有設置。 這個最好寫入代碼裏面,只在設計界面很有可能不生效。 算是LAYA引擎的問題

原创 vue項目出現 cannot get 錯誤解決方法

  說明模塊有更新   npm remove request npm install requset   這樣就沒事了

原创 leetcode Valid Parentheses 檢查大小括號問題

Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.

原创 leetcode Remove Duplicates from Sorted Array 數組去重

Given a sorted array nums, remove the duplicates in-place such that each element appear only once and return the new le

原创 leetcode Merge Sorted Array 合併有序數組

Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array. Note: The number of elemen

原创 leetcode Search Insert Position 檢查數組中是否有這個數

Given a sorted array and a target value, return the index if the target is found. If not, return the index where it wou

原创 Leetcode Roman to Integer 羅馬數字轉整形問題

Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M. Symbol Value I 1

原创 leetcode Merge Two Sorted Lists 合併有序列表

Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes o

原创 leetcode Ugly Number 檢查知否能被2,3,5整除

  Write a program to check whether a given number is an ugly number. Ugly numbers are positive numbers whose prime fact

原创 leetcode 幸運數字 202. Happy Number

Write an algorithm to determine if a number is "happy". A happy number is a number defined by the following process: St

原创 Leetcode 判斷字符串是否能翻轉

Example 1: Input: 121 Output: true Example 2: Input: -121 Output: false Explanation: From left to right, it reads -1

原创 leetcode 數據翻轉 PHP

想要完成的目標 Example 1: Input: 123 Output: 321 Example 2: Input: -123 Output: -321 Example 3: Input: 120 Output: 21  

原创 leetcode 判斷二叉樹是否一致 SAME TREE

要實現的目標 Example 1: Input: 1 1 / \ / \ 2 3 2 3 [1,2,3], [1,2,3]

原创 leetcode 查找字符串數組共同的前綴longestCommonPrefix

 例子,需要達到的目標 Example 1: Input: ["flower","flow","flight"] Output: "fl" Example 2: Input: ["dog","racecar","car"] Outp

原创 laravel在出現串庫問題

  下面的這段錯誤就是因爲不知道爲何連接到了A數據庫而出現的: 分析過程 第一個猜想到的是不是在B應用連接數據庫時,直接使用的是A應用中連接數據庫的的資源ID,但是感覺這種情況應該不會出現。 另外一種情況,就是讀取數據庫配置的時候出錯了,