Tag

Prime Numbers

0 views collected around this technical thread.

Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Sep 28, 2021 · Fundamentals

Understanding JavaScript Generators: Beyond Async/Await and Infinite Sequences

This article clarifies the misconception that JavaScript generators are only for async, explains their underlying pause‑and‑resume mechanism, demonstrates how they can model infinite sequences such as prime numbers by translating Haskell concepts, and shows practical API designs using generators.

Async/AwaitFunctional ProgrammingGenerators
0 likes · 7 min read
Understanding JavaScript Generators: Beyond Async/Await and Infinite Sequences
Full-Stack Internet Architecture
Full-Stack Internet Architecture
Jun 4, 2020 · Fundamentals

The Origin and Development of the Goldbach Conjecture

This article traces the historical origins of the Goldbach conjecture, explains its equivalent formulations involving prime numbers and almost‑primes, reviews the series of partial results such as the 9+9 and 1+2 theorems, and discusses why the full conjecture remains unproven today.

Almost PrimesChen JingrunGoldbach Conjecture
0 likes · 7 min read
The Origin and Development of the Goldbach Conjecture
FunTester
FunTester
Sep 16, 2019 · Fundamentals

Finding Twin Primes Using Recursive Filtering in Java

The article explains how to generate prime numbers with a recursive filtering method, identify twin primes below 10,000, and includes Java implementations of bubble sort and insertion sort, along with a brief commentary on Groovy's advantages and a curated list of related technical articles.

AlgorithmJavaPrime Numbers
0 likes · 5 min read
Finding Twin Primes Using Recursive Filtering in Java
FunTester
FunTester
Jul 8, 2019 · Fundamentals

Exploring Python Lambda Syntax with Prime Number Filtering and Heart‑Shape ASCII Art

The author revisits prime‑number filtering using Python's lambda syntax, rewrites the algorithm with a recursive approach, and then demonstrates a heart‑shaped ASCII art program, highlighting new insights into Python's expressive capabilities and code clarity.

AlgorithmCode TutorialPrime Numbers
0 likes · 3 min read
Exploring Python Lambda Syntax with Prime Number Filtering and Heart‑Shape ASCII Art