jimmy chenjimmychen338.hashnode.dev·Sep 19, 2023(Day 6) 筆記隔了3天沒寫,發現可以挑戰連續100 Days for Code的人真的很厲害,我連100天要連續po費文都覺得很難了,更何況是關於Code的文章,今天的主旨是關於我活了這麼久,第1次學到的常識,接下來就娓娓道來: (以後會陸續更新,成為我的實用筆記) 房屋貸款的公式如下: 總共還款金額= 每月還款金額 \ 12 \ 年數 引用洪錦魁 老師於2023 年出版,Python + ChatGPT 零基礎+高效率學程式設計與運算思維 ,書中的一段話: (如有侵權請告知,將立即刪除) 貸款金額:6...DiscussMath
Dheepashri RajavelforRelearn Schoolblog.relearnschool.in·Sep 15, 2023How Coding Can Help You Do Better in MathsIn the digital age, where technology shapes every aspect of our lives, introducing kids to coding at an early age offers a gateway not just to tech proficiency, but also to improved mathematical aptitude. It might sound surprising, but the world of c...DiscussRelearn School
Anudari Gpibunny.hashnode.dev·Aug 20, 2023The Why and the How of 'Evaluating Limits'Possible results Finite Limit (number): If the limit of the function exists and is a finite number, it means that as the input values get closer and closer to a certain point, the function values approach a specific finite value. The function is app...DiscussMath
Anudari Gpibunny.hashnode.dev·Aug 6, 2023Fundamental Theorem of Calculus (made easy)Fundamental Theorem of Calculus or short for FTC. Wow, it sounds scary and new, but it's all about the relationship between derivatives and integrals. FTC shows that derivates and integrals are indeed inverse of each other. Real-world applications o...Discuss·1 likecalculus
Haneunhanlee.hashnode.dev·Aug 4, 2023Sum of Numbers (Arithmetic Series)Definition The sum of an arithmetic sequence refers to the sum of consecutive terms in a sequence where the difference between consecutive terms is constant. You can calculate the sum of an arithmetic sequence using a specific formula. To find the su...DiscussMathMath
Anudari Gpibunny.hashnode.dev·Jul 29, 2023Numbers Game: Ace Math ClassesBe On Time Not just for your lecture but reviews, homework, quizzes, etc. Start early and avoid the trap of last-minute cramming. Review after each class to get it in your long-term memory faster. Avoid the all-nighter approach, as it leaves you exha...Discuss·1 like·28 readsMath
Yaroslav Prozorovbyka.hashnode.dev·Jun 11, 2023How to print prime factors of a number efficiently"In a realm where numbers hold secrets, a captivating challenge awaits, which is to Find all the Prime factors of a Number" Description Problem: We are given a number n. The task is to print all prime factors of n. Prime Factors: They are prime numbe...DiscussMathematics
Nilesh Saininileshsaini.hashnode.dev·Jun 1, 2023Insert Delete GetRandom O(1)When it comes to designing data structures, one often seeks optimal solutions that offer efficient operations. In this article, we will explore the approach to tackling this problem using JavaScript. Problem Statement: Implement the RandomizedSet cla...DiscussArrays and Hashingarray
Nilesh Saininileshsaini.hashnode.dev·May 19, 2023Rotate ArrayThis problem asks us to rotate an array of integers by a given number of steps. While seemingly straightforward, finding the most optimized solution can be a captivating puzzle for most of us. In this article, we will delve into several distinct appr...Discussarray
Habibullah Baharihabibullah.hashnode.dev·May 15, 2023Horner’s Method for Polynomial EvaluationOverview Horner's method, also known as Horner's scheme or Horner's rule, is an algorithm used for efficiently evaluating polynomials. It allows for the calculation of polynomial values by reducing the number of required multiplications and additions...Discuss·3 likes·47 readsMathematics