leetcode with python:202. Happy Number

题目: Write an algorithm to determine if a number n is happy. A happy number is a number defined by the following process: Starting with any positive integer, replace the number by the sum of the squ
我...也想成为火箭队(4) - Jennifer Dewalt 接续心法

介绍 今天来介绍一位我十分景仰的人物,Jennifer Dewalt,是名创作艺术家,在接触到网页程式后开始决定执行一项任务,即是180天中每天做一个网页小作品出
GWS 强制开启两阶段验证后,用户端无法登入如何解除

自 2022/6/1 开始GWS强制用户端使用两阶段验证 当然网域管理者可以延缓开启的动作,但是建议是一定要开启 强制开启两步骤验证的设定 机构 Admin 管理中心
template 与 views 沟通 (前端与后端沟通),最终优化版

总共三步:在urls中加入一个path,在views中加入一个function,在template的html中进行post or get; 首先我们来看第一步: 在urls中加一个path,为了方便使用,我们
Virtual birthday cards

![http://img2.58codes.com/2024/happy-birthday-balloons-watercolor-art-free-group-greeting-ecards.png] Birthdays are always special, and when we keep the excitement increasing, there is no special event
leetcode with python:203. Remove Linked List Elements

题目: Given the head of a linked list and an integer val, remove all the nodes of the linked list that has Node.val == val, and return the new head. 给定一个linked list跟一个目标值(val),删除
leetcode with python:205. Isomorphic Strings

题目: Given two strings s and t, determine if they are isomorphic. Two strings s and t are isomorphic if the characters in s can be replaced to get t. All occurrences of a character must be replaced
我...也想成为火箭队(5) - 纪录自己的学习 (MDN HTML、CSS章节)

一开始怎么学 先在六角学院的使用 HTML、CSS 开发一个网站试听课程,大概学个基本产生兴趣。 (有部分产生兴趣的原因,是比起以前学的AI、PS,网页更有互
leetcode with python:206. Reverse Linked List

题目: Given the head of a singly linked list, reverse the list, and return the reversed list. 给定一个linked list,将其反转回传 一开始我是直观用迭代的方式去解 # Definition for
leetcode with python:217. Contains Duplicate

题目: Given an integer array nums, return true if any value appears at least twice in the array, and return false if every element is distinct. 给定一个阵列,判断里面的值是否都是独一无
leetcode with python:219. Contains Duplicate II

题目: Given an integer array nums and an integer k, return true if there are two distinct indices i and j in the array such that nums[i] == nums[j] and abs(i - j) = k. 给定一个阵列跟一数k,确认