├── .github ├── ISSUE_TEMPLATE │ └── ISSUE-TEMPLATE.yml └── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md ├── .gitignore ├── .vscode ├── extensions.json └── launch.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── astro.config.mjs ├── package.json ├── public └── favicon.svg ├── src ├── assets │ └── homebanner_bg_img.png ├── components │ ├── Footer.astro │ ├── Header.astro │ ├── HomeBanner.astro │ ├── SolutionsBanner.astro │ └── darkModeToggler.jsx ├── env.d.ts ├── layouts │ ├── BaseLayout.astro │ └── MarkdownLayout.astro ├── pages │ ├── about.astro │ ├── contact.astro │ ├── index.astro │ └── solutions │ │ ├── index.astro │ │ └── python │ │ ├── palindrome.md │ │ └── two_sums.md ├── prism │ ├── prism.css │ └── prism.js └── styles │ └── darkModeToggler.css ├── tailwind.config.cjs └── tsconfig.json /.github/ISSUE_TEMPLATE/ISSUE-TEMPLATE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/.github/ISSUE_TEMPLATE/ISSUE-TEMPLATE.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /src/assets/homebanner_bg_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/src/assets/homebanner_bg_img.png -------------------------------------------------------------------------------- /src/components/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/src/components/Footer.astro -------------------------------------------------------------------------------- /src/components/Header.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/src/components/Header.astro -------------------------------------------------------------------------------- /src/components/HomeBanner.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/src/components/HomeBanner.astro -------------------------------------------------------------------------------- /src/components/SolutionsBanner.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/src/components/SolutionsBanner.astro -------------------------------------------------------------------------------- /src/components/darkModeToggler.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/src/components/darkModeToggler.jsx -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/layouts/BaseLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/src/layouts/BaseLayout.astro -------------------------------------------------------------------------------- /src/layouts/MarkdownLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/src/layouts/MarkdownLayout.astro -------------------------------------------------------------------------------- /src/pages/about.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/src/pages/about.astro -------------------------------------------------------------------------------- /src/pages/contact.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/src/pages/contact.astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/pages/solutions/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/src/pages/solutions/index.astro -------------------------------------------------------------------------------- /src/pages/solutions/python/palindrome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/src/pages/solutions/python/palindrome.md -------------------------------------------------------------------------------- /src/pages/solutions/python/two_sums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/src/pages/solutions/python/two_sums.md -------------------------------------------------------------------------------- /src/prism/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/src/prism/prism.css -------------------------------------------------------------------------------- /src/prism/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/src/prism/prism.js -------------------------------------------------------------------------------- /src/styles/darkModeToggler.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/src/styles/darkModeToggler.css -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsvigneshkanna/leetcode_solutions_website/HEAD/tsconfig.json --------------------------------------------------------------------------------