- LeetCode第160:相交链表
文章目录......
- 闯关leetcode——125. Valid Palindrome
大纲题目地址内容解题代码地址题目地址https://leetcode.com/problems/valid-palindrome/description/内容Aphraseisapalindromeif,afterconvertingalluppercaselettersintolowercaselettersandremovingallnon-alphanumericcharacters,itre......
- [LeetCode] 1545. Find Kth Bit in Nth Binary String
Giventwopositiveintegersnandk,thebinarystringSnisformedasfollows:S1="0"Si=Si-1+"1"+reverse(invert(Si-1))fori>1Where+denotestheconcatenationoperation,reverse(x)returnsthereversedstringx,an......
- leetcode:有效的数独
题目:有效的数独link:https://leetcode.cn/problems/valid-sudoku/description/?envType=study-plan-v2&envId=top-interview-150defisValidSudoku(self,board:List[List[str]])->bool:rows=[[0foriinrange(9)]forjinrange(9)]colou......
- leetcode:螺旋矩阵
2024-10-19 https://leetcode.cn/problems/spiral-matrix/description/?envType=study-plan-v2&envId=top-interview-150 1classSolution:2defspiralOrder(self,matrix:List[List[int]])->List[int]:34m=len(matrix)5......
- leetcode:栈和队列oj题
目录1.有效的括号2.用队列实现栈 3.用栈实现队列 ......
- LeetCode热题100|买卖股票的最佳时机(贪心)
简述题意省流版:在一个序列里找到max(a[i]-a[k])且i>k。解题思路: 遍历这个序列,i表示当前遍历到了第i个元素,min1表示1到i这个范围内最小的元素,max1表示1到i这个范围内最大的【max(a[i]-a[k])】。max1=max(max1,第i个元素的值-min1)代码如下:classSolution{public:intm......
- LeetCode 707 - 设计链表
题目描述你可以选择使用单链表或者双链表,设计并实现自己的链表。单链表中的节点应该具备两个属性:val 和 next 。val 是当前节点的值,next 是指向下一个节点的指针/引用。如果是双向链表,则还需要属性 prev 以指示链表中的上一个节点。假设链表中的所有节点下标从 0 ......
- Leetcode 1129. 颜色交替的最短路径
1.题目基本信息1.1.题目描述给定一个整数n,即有向图中的节点数,其中节点标记为0到n–1。图中的每条边为红色或者蓝色,并且可能存在自环或平行边。给定两个数组redEdges和blueEdges,其中:redEdges[i]=[a_i,b_i]表示图中存在一条从节点a_i到节点b_i的红色有向边,bl......
- Leetcode 1135. 最低成本连通所有城市
1.题目基本信息1.1.题目描述想象一下你是个城市基建规划者,地图上有n座城市,它们按以1到n的次序编号。给你整数n和一个数组conections,其中connections[i]=[x_i,y_i,cost_i]表示将城市x_i和城市y_i连接所要的cost_i(连接是双向的)。返回连接所有城市的最低成本,......