|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + <meta name="description" content="Analyze time and memory complexity of LeetCode solutions."> |
| 7 | + <title>Kazakhstan LeetCode Hall of Fame</title> |
| 8 | + <link rel="icon" type="image/png" href="{{ url_for('static', filename='leetcode-logo.png') }}"> |
| 9 | + <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> |
| 10 | + <link href="{{ url_for('static', filename='style.css') }}" rel="stylesheet"> |
| 11 | + <link rel="stylesheet" type='text/css' href="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/devicon.min.css"/> |
| 12 | +</head> |
| 13 | +<body class="bg-gray-100"> |
| 14 | + <div class="container mx-auto px-4 py-8"> |
| 15 | + <div class="bg-white shadow-md rounded-lg p-6 max-w-2xl mx-auto"> |
| 16 | + <!-- Header Section --> |
| 17 | + <a href="/"><img src="{{ url_for('static', filename='leetcode-logo.png') }}" alt="LeetCode Logo" class="logo mb-6"></a> |
| 18 | + <h1 class="text-3xl font-bold mb-6 text-center text-gray-800">Kazakhstan LeetCode Hall of Fame</h1> |
| 19 | + |
| 20 | + <!-- Redirection Buttons Section --> |
| 21 | + <div class="flex justify-center space-x-4 mb-6"> |
| 22 | + <a href="https://github.com/silvermete0r/QazKosuKosu" target="_blank" class="bg-purple-500 hover:bg-gray-600 text-white font-semibold py-2 px-4 rounded-md transition duration-300"><i class="devicon-python-plain"></i> Qaz++ Playground</a> |
| 23 | + <a href="#" class="bg-yellow-500 hover:bg-gray-600 text-white font-semibold py-2 px-4 rounded-md transition duration-300"><i class="devicon-cplusplus-plain"></i> Hall of Fame LC (KZ)</a> |
| 24 | + <a href="https://t.me/leetcodekz" target="_blank" class="bg-green-500 hover:bg-gray-600 text-white font-semibold py-2 px-4 rounded-md transition duration-300"><i class="devicon-php-plain"></i> LeetCode TG (KZ)</a> |
| 25 | + </div> |
| 26 | + |
| 27 | + <!-- TOP 10 LeetCode users in Kazakhstan --> |
| 28 | + <div class="mt-8 p-4 bg-blue-100 border border-blue-300 rounded-md"> |
| 29 | + <h2 class="text-2xl font-semibold mb-4 text-gray-800">Top 10 LeetCode Users in Kazakhstan</h2> |
| 30 | + <ol class="list-decimal list-inside text-lg text-gray-700"> |
| 31 | + <a href="https://leetcode.com/kaikaikaikaikai" target="_blank" class="text-red-600"><li>kaikaikaikaikai</li></a> |
| 32 | + <a href="https://leetcode.com/rtmkz" target="_blank" class="text-yellow-600"><li>rtmkz</li></a> |
| 33 | + <a href="https://leetcode.com/Tima_" target="_blank" class="text-purple-600"><li>Tima_</li></a> |
| 34 | + <a href="https://leetcode.com/DimmyT" target="_blank"><li>DimmyT</li></a> |
| 35 | + <a href="https://leetcode.com/erel3" target="_blank"><li>erel3</li></a> |
| 36 | + <a href="https://leetcode.com/shinbay" target="_blank"><li>shinbay</li></a> |
| 37 | + <a href="https://leetcode.com/daurenabd" target="_blank"><li>daurenabd</li></a> |
| 38 | + <a href="https://leetcode.com/temirulan" target="_blank"><li>temirulan</li></a> |
| 39 | + <a href="https://leetcode.com/proggerkz" target="_blank"><li>proggerkz</li></a> |
| 40 | + <a href="https://leetcode.com/404akhan" target="_blank"><li>404akhan</li></a> |
| 41 | + </ol> |
| 42 | + </div> |
| 43 | + |
| 44 | + <p class="text-lg text-gray-700 mt-4">Note: This list is based on the user's performances in LeetCode contests. Last update: 18 Jun., 2024.</p> |
| 45 | + <p class="text-lg text-gray-700 mt-4">Data retrieved from <a href="https://clist.by/resource/leetcode.com/?country=KZ" target="_blank" class="text-purple-600">Clist.by Kazakhstan LeetCode Rankings</a></p> |
| 46 | + |
| 47 | + <!-- Github Stats --> |
| 48 | + <div class="flex justify-center space-x-4 mt-8 mb-6"> |
| 49 | + <a href="https://github.com/silvermete0r/https://github.com/silvermete0r/leetcode-solution-complexity-analyzer"> |
| 50 | + <img src="https://img.shields.io/github/stars/silvermete0r/leetcode-solution-complexity-analyzer?style=for-the-badge"> |
| 51 | + </a> |
| 52 | + <a href="https://github.com/silvermete0r/leetcode-solution-complexity-analyzer"> |
| 53 | + <img src="https://img.shields.io/github/contributors/silvermete0r/leetcode-solution-complexity-analyzer?style=for-the-badge"> |
| 54 | + </a> |
| 55 | + <a href="https://github.com/silvermete0r/leetcode-solution-complexity-analyzer"> |
| 56 | + <img src="https://img.shields.io/github/license/silvermete0r/leetcode-solution-complexity-analyzer?style=for-the-badge"> |
| 57 | + </a> |
| 58 | + </div> |
| 59 | + |
| 60 | + <!-- Footer Section --> |
| 61 | + <div class="text-center mt-8 text-gray-600"> |
| 62 | + Made with ❤ by <a href="https://github.com/silvermete0r" class="text-green-600" target="_blank">@silvermete0r</a> |
| 63 | + </div> |
| 64 | + </div> |
| 65 | + </div> |
| 66 | +</body> |
| 67 | +</html> |
0 commit comments