49 Commits
Author SHA1 Message Date
Prad Nukala f4edb09e5e docs(welcome): restructure documentation directories and add new guides section 2026-07-15 15:07:28 -04:00
Prad Nukala 0a439d468e feat(config): update site title and add navigation tab 2026-07-15 15:07:27 -04:00
Prad Nukala a7adcb9ada docs(README): update documentation link URL 2026-07-14 11:21:26 -04:00
Prad Nukala ea3c07ca38 chore(): add bun.lock file with dependencies for docs package 2026-07-14 11:10:47 -04:00
Prad Nukala d322faa3a8 docs: standardize accordion components in problem hints 2026-07-14 11:10:30 -04:00
Prad Nukala 3e4c8c7065 feat(package): add package.json with blume dependencies and scripts 2026-07-14 11:07:16 -04:00
Prad Nukala 172bdcf40e docs(docs): migrate to array based folder structure 2026-07-14 11:07:15 -04:00
Prad Nukala a7f9fc28e0 feat(config): add blume config file and remove waku config 2026-07-14 11:07:13 -04:00
Prad Nukala a0f5264106 init(work): add JavaScript pattern recognition drills 2026-07-14 10:50:34 -04:00
Prad Nukala f39e10e8fb fix(package): remove outdated package.json file 2026-07-13 17:16:46 -04:00
Prad Nukala 240ffe0333 chore(config): remove blume config file 2026-07-13 17:16:46 -04:00
Prad Nukala b35b896a92 chore(.gitignore): add blume directory to gitignore 2026-07-13 17:16:19 -04:00
Prad Nukala 2176f6265f feat(package): add package.json with blume dependencies and scripts 2026-07-13 17:16:17 -04:00
Prad Nukala c66b7743e7 docs(index): add introduction documentation 2026-07-13 17:16:16 -04:00
Prad Nukala 78d8ce30f5 feat(config): add blume configuration file 2026-07-13 17:16:15 -04:00
Prad Nukala 571d4633d9 feat(work): add problem1 function implementation 2026-07-13 15:20:37 -04:00
Prad Nukala 2b6e93af0d feat(work): add blind deduction set comments and problem1 function stub 2026-07-13 15:08:16 -04:00
Prad Nukala 04a9e82fc3 chore(Blind): add answer key and solutions for deduction problems 2026-07-13 12:15:42 -04:00
Prad Nukala 090189ccf7 chore(notes): remove 1365 notes and 451.sort-characters-by-frequency.js file 2026-07-13 12:15:40 -04:00
Prad Nukala 4840da7c8f fix(problems): remove solutions for completed problems 2026-07-13 12:15:35 -04:00
Prad Nukala 8f1f60f9ba fix(leetcode): remove solutions for problems 1365 and 1636 2026-07-13 12:15:34 -04:00
Prad Nukala 1eda252101 docs(hash-table): add first unique character in a string LC-387
docs(array): add sort array by increasing frequency LC-1636
docs(array): add top k frequent elements LC-347
docs(hash-table): add sort characters by frequency LC-451
docs(array): add minor edit to how many numbers are smaller than current LC-1365
2026-07-12 20:56:17 -04:00
Prad Nukala 8ab04b153f docs(array): add LC-1365 How Many Numbers Are Smaller Than the Current Number documentation 2026-07-12 19:59:11 -04:00
Prad Nukala 4be2caee9f refactor(Hash Table): optimize character frequency sorting implementation 2026-07-12 18:50:59 -04:00
Prad Nukala b9e9bcff49 feat(leetcode): add solution for sort array by increasing frequency problem 2026-07-12 18:50:57 -04:00
Prad Nukala 94b4bc509b docs(docs): add cli configuration and components 2026-07-12 18:50:57 -04:00
Prad Nukala 3a238c34d9 chore(.gitignore): add tmp directory to ignore list 2026-07-12 15:59:48 -04:00
Prad Nukala fa3ab1031d docs(leetcode): add solution and documentation for 1365. How Many Numbers Are Smaller Than the Current Number 2026-07-12 15:56:38 -04:00
Prad Nukala 1f48808548 docs(index): update documentation content and structure 2026-07-12 15:56:36 -04:00
Prad Nukala 58ffefdaeb docs(readme): clarify problem solving approach for frequency related problems 2026-07-12 15:56:35 -04:00
Prad Nukala 1aaab66971 init(docs): create docs site template with Fumapress and Waku 2026-07-12 13:13:51 -04:00
Prad Nukala 49a52b138f fix(react): add typeset-prompt.md back
chore(release): v0.6.0
docs(changelog): update changelog
feat(cli): improve formatting
fix(cli): handle large inputs
perf(cli): optimize performance
refactor(cli): simplify code
style(cli): improve code style
test(cli): add tests
build(cli): update build
ci(cli): update ci
init(cli): init cli
2026-07-12 13:13:48 -04:00
Prad Nukala d3bfaa1b8a docs(readme): update documentation link URL 2026-07-12 12:17:39 -04:00
Prad Nukala 3ff25b0ae9 chore(Docs): add vercel to gitignore and package.json 2026-07-12 12:16:28 -04:00
Prad Nukala 8f950111b5 init(Docs): setup docs site with Fumapress and Waku 2026-07-12 12:14:51 -04:00
Prad Nukala faa95b2e8b docs(Easy/Array/1365.md): remove The Frequency Array + Prefix Sum Pattern solution 2026-07-12 12:14:47 -04:00
Prad Nukala ed74d3c7b3 init(Easy/Hash Table): add solution for 387.first-unique-character-in-a-string.js 2026-07-11 23:25:19 -04:00
Prad Nukala 2bc7b5e4af docs(readme): add decision cheat sheet and mental checklist for problem solving 2026-07-11 23:25:17 -04:00
Prad Nukala ac016faada feat(Medium/Array): add solution for top-k-frequent-elements problem 2026-07-11 23:08:07 -04:00
Prad Nukala 0acffbf998 init(Easy/Array): add solution for 1636. Sort Array by Increasing Frequency
init(Medium/Hash Table): add solution for 451. Sort Characters By Frequency
2026-07-11 22:30:34 -04:00
Prad Nukala f7c0da21ce chore: add .gitignore file 2026-07-11 19:49:39 -04:00
Prad Nukala f54453a01d refactor(Array): optimize solution for 'how many numbers are smaller than the current number' problem 2026-07-11 19:49:36 -04:00
Prad Nukala 80ad6fc81b docs(1365.md): add solution and explanation for "How Many Numbers Are Smaller Than the Current Number" problem 2026-07-11 16:43:22 -04:00
Prad Nukala 0ab732e90a chore(Docs): remove fumapress app powered by waku and fumadocs 2026-07-11 16:43:20 -04:00
Prad Nukala 077cbeeb5a docs(readme): revamp readme with improved formatting and introduction 2026-07-11 16:14:12 -04:00
Prad Nukala dc20248d5f init(Docs): add docs site based on Fumapress and Fumadocs 2026-07-11 16:09:08 -04:00
Prad Nukala d7dfa1e45a docs: remove redundant documentation files and table of contents from README 2026-07-11 16:09:06 -04:00
Prad Nukala 25ef46e13b docs(lc-1365): add documentation and code examples for Leetcode 1365 problem 2026-07-11 14:28:02 -04:00
Prad Nukala 89664c3852 docs: add README files for leetcode problems and table of contents 2026-07-06 11:35:54 -04:00