#algorithmUnmoderated tagAll postsTrending CommunitiesSteemitCryptoAcademyNewcomers' Communityআমার বাংলা ব্লগKorea • 한국 • KR • KOSTEEM CN/中文Steem AllianceWORLD OF XPILARAVLE 일상Beauty of CreativityComunidad LatinaSteem POD TeamSCT.암호화폐.CryptoExplore Communities...#algorithmTrendingHotNewPayoutsMutedlupafilotaxia (75)in #blog • 17 days agoScientists develop algorithm to estimate ideal time for marriageCONTENT Advances in science never cease to amaze us, even if it generates some astonishment, a group of scientists…nesaty (67)in Tron Fan Club • 2 months agoBots and Automated Trading StrategiesAI and algorithmic trading are changing financial markets by introducing bots and automated strategies for the speedy…toufiq777 (77)in SteemitCryptoAcademy • 2 months agoSteemit Learning Challenge S22 Application: Intro to classes and objects in JavaHello, I'm @toufiq777 Hope everyone is well I am also fine by the grace of God. Intro to classes and objects…kouba01 (81)in #learningwithsteem • 3 months agoSteemit Learning Challenge S22 Application: Object-Oriented Programming with JavaEdited By Canva Introduction Dear Steemit Moderators and Community, I am delighted to submit my application…bumblecat (78)in #holiday • 3 months agoFlix algo.oh Netflix, may your algorithym continue to know me better than I know myself.... ...NOT! You watch The Holiday…articlepoint786 (32)in #googleupdate • 3 months agosteemCreated with Sketch.Adapting to Google’s Search Algorithm: Why Businesses Need a New SEO StrategyStay ahead with insights on Google's Search Algorithm update! Learn why quality content is key and how to adapt your…fangwei (59)in #programming • 4 months ago【LeetCode】541. 反转字符串 II1 题目描述 541. 反转字符串 II 给定一个字符串 s 和一个整数 k ,从字符串开头算起,每计数至 2k 个字符,就反转这 2k 字符中的前 k 个字符。如果剩余字符少于 k…fangwei (59)in #programming • 4 months ago【Leetcode】344. 反转字符串1 题目描述 344. 反转字符串 编写一个函数,其作用是将输入的字符串反转过来。输入字符串以字符数组 s 的形式给出。不要给另外的数组分配额外的空间,你必须原地修改输入数组、使用 O(1) 的额外空间解决这一问题。 2…fangwei (59)in #programming • 4 months ago【LeetCode】142. 环形链表 II1 题目描述 142. 环形链表 II 给定一个链表的头节点 head ,要求返回链表开始入环的第一个节点。如果没有环,则返回 null 。 2 解题思路 快慢指针法 :使用两个指针,一个快指针 fast…fangwei (59)in #programming • 4 months ago【LeetCode】160. 相交链表1 题目描述 160. 相交链表 要求给定两个单链表的头节点 headA 和 headB ,任务是找出并返回两个单链表相交的起始节点。如果两个链表不存在相交节点,返回 null 。 2 解题思路…lupafilotaxia (75)in Project HOPE • 4 months agoScientists develop algorithm to estimate ideal time for marriageCONTENT Advances in science never cease to amaze us, even if it generates some astonishment, a group of scientists…kouba01 (81)in #teachingteam • 4 months agoSteemit Learning Challenge Application: Python Algorithms and Programming Course (medium Level)Edited By Canva Dear Steemit Moderators and Community, I am excited to submit my application for Season 21…shanyin (25)in #tiktok • 4 months agoTikTok爆款内容创作指南短视频爆款内容结构拆解 视觉或听觉钩子 (Hook) • 目标:在视频前3秒抓住观众注意力 • 方法: • 视觉: • 夸张画面/颜色:例如满地紫色液体,制造悬念 •…ahsansharif (74)in #devjr-s20w2 • 5 months agoBasic programming course: Lesson #2 - Variables and Types of DataHello Everyone I'm AhsanSharif From Pakistan Greetings you all, hope you all are well and enjoying a happy…fangwei (59)in #programming • 6 months ago【LeetCode】19. 删除链表的倒数第 N 个结点1 题目描述 19. 删除链表的倒数第 N 个结点 要求给定一个链表,任务是删除链表的倒数第 n 个结点,并且返回链表的头结点。 2 解题思路 本题可以通过双指针的方法来解决。具体来说,可以使用两个指针 slow…fangwei (59)in #programming • 6 months ago【LeetCode】24. 两两交换链表中的节点1 题目描述 24. 两两交换链表中的节点 要求给定一个链表,要求两两交换其中相邻的节点,并返回交换后链表的头节点。需要注意的是,必须在不修改节点内部的值的情况下完成这个任务(即,只能进行节点交换)。 2 解题思路…fangwei (59)in #programming • 6 months ago【LeetCode】206. 反转链表1 题目描述 206. 反转链表 要求给定单链表的头节点 head ,任务是反转链表,并返回反转后的链表。 2 解题思路 递归反转 :使用递归方法,每次反转当前节点 cur 的 next…fangwei (59)in #programming • 6 months ago【LeetCode】203. 移除链表元素1 题目描述 203. 移除链表元素 要求给定一个链表的头节点 head 和一个整数 val ,任务是删除链表中所有满足 Node.val == val 的节点,并返回新的头节点。 2 解题思路…fangwei (59)in #programming • 6 months ago【LeetCode】146. 螺旋遍历二维数组1 题目描述 LCR 146. 螺旋遍历二维数组 给定一个二维数组 array ,任务是返回「螺旋遍历」该数组的结果。螺旋遍历是指从左上角开始,按照 向右、向下、向左、向上的顺序…fangwei (59)in #programming • 6 months ago【LeetCode】54. 螺旋矩阵1 题目描述 54. 螺旋矩阵 要求给定一个 m 行 n 列的矩阵 matrix ,请按照顺时针螺旋顺序返回矩阵中的所有元素。 2 解题思路…