logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

vue框架中更改body,html页面背景颜色

beforeCreate () {document.querySelector('body').setAttribute('style', 'background-color:#fff')},beforeDestroy () {document.querySelector('body').removeAttribute('style')}

#前端
LeetCode 91 Decode Ways (Python详解及实现)

【题目】Amessage containing letters from A-Z is being encoded to numbers using thefollowing mapping: 'A'-> 1'B'-> 2...'Z'-> 26Given anencoded message containing digits, determine the total n

LeetCode 66 Plus One (Python详解及实现)

【题目】Given a non-negative integer represented asa non-empty array of digits, plus one to the integer. You may assume the integer do not containany leading zero, except the number 0 itself. Th

到底了