-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathleetcode.html
More file actions
executable file
·18 lines (16 loc) · 823 Bytes
/
leetcode.html
File metadata and controls
executable file
·18 lines (16 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
layout: page
title: LeetCode
permalink: /leetcode/
---
<a href="https://imgur.com/nk4KbpA"><img src="https://i.imgur.com/nk4KbpA.png" title="source: imgur.com" /></a>
<div style="color:#000;size:20;font:Georgia;font-weight:bold">I started solving questions on leetcode since Aug, 2018 and only listed the problems I solved twice. More questions will be updated for sure and they can be found at my github repository <a href="https://github.com/Seanforfun/Algorithm-and-Leetcode">Algorithm-and-Leetcode</a></div>
{% assign items = site.leetcode | sort: 'title' %}
{% for post in items %}
<li>
<strong>
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</strong>
<span class="post-date">- {{ post.date | date_to_long_string }}</span>
</li>
{% endfor %}