Apr 14 · 10 min read · Code on GitHub. Paper on arXiv. More posts at radarlog.kr. Part 1 covered MemoryBank's architecture and how to use it. This part cracks open the engine. One formula. R = e^(−t/S). How it works, what happens when S changes, where to set the threshold...
Join discussionFeb 13 · 1 min read · https://leetcode.com/problems/reverse-integer/description/ Core Idea Step 1: Handle Sign Store sign separately. Work with abs(x). Step 2: Reverse Digits Use: rem = num % 10 rev = rev * 10 + rem num = num // 10 Step 3: Restore Sign Instead of: re...
Join discussionFeb 2 · 9 min read · This blog post guides you through the process of fine-tuning the DeepSeek Math model to solve math problems expressed using emojis. This is a fun and engaging way to explore the capabilities of large language models (LLMs) and their ability to unders...
Join discussion
Jan 25 · 5 min read · الفرق بين العمر الهجري والعمر الميلادي هل لاحظت من قبل أن عمرك بالتقويم الهجري يختلف عن عمرك بالتقويم الميلادي؟ هذا الاختلاف ليس خطأً في الحساب، بل هو نتيجة طبيعية للفروقات الجوهرية بين النظامين التقويميين اللذين نستخدمهما في حياتنا اليومية. فبينما ي...
Join discussionJan 23 · 4 min read · У книжці "Мистецтво програмування" Дональд Кнута в розділі про індукцію є цікава, як на мій погляд (так-так, мій, не твій), задачка, що базується на наступному, як на мій погляд (ой, не починай) спостереженні: $$\begin{align} & 1^3 + 2^3 & = & \quad ...
Join discussion
Jan 21 · 2 min read · Many students struggle with SAT Math not because they lack knowledge, but because of careless mistakes. Missed negative signs, misread questions, or simple arithmetic errors can cost valuable points—even when the concepts are familiar. The good news?...
Join discussion