Sites like

shirleyisnotageek.blogspot.com
Alternatives

  shirleyisnotageek.blogspot.com

noimage.png

Stats

  Alexa Rank: 


  Popular in Country: 


  Country Alexa Rank:  


 language:  


  Response Time:  


  SSL:  Disable


  Status:  up


Code To Txt Ratio

 Word Count  


 Links  


  ratio  


Found 68 Top Alternative to Shirleyisnotageek.blogspot.com

2
noimage.png

Zhuhan0.blogspot.com

Han Zhu's Study Notes

Han Zhu's Study Notes. Mind nodes, path-finding algorithms, and random garbage collections of a computer science student.

3
wordpress.com.png

Wordpress.com

WordPress.com: Fast, Secure Managed WordPress Hosting

Create a free website or build a blog with ease on WordPress.com. Dozens of free, customizable, mobile-ready designs and themes. Free hosting and support.

5
massivealgorithms.blogspot.com.png

Massivealgorithms.blogspot.com

Massive Algorithms: Archives

Archives at 8:33 PM Email ThisBlogThis!Share to TwitterShare to FacebookShare to Pinterest Newer Post Older Post Slider(Newer 20)    Home (Archives)    Random Post    Slider(Random 20)    Slider(Older 20) Home Labels LeetCode (1433) GeeksforGeeks (1122) LeetCode - Review (1068) Review (883) Algorithm (668) to-do (609) Classic Algorithm (270) Google...

6
icqgeeks.com.png

Icqgeeks.com

Tech Interview

LeetCode 1 – Two Sum – Easy (5/20/2016) LeetCode 2 – Add Two Numbers – Medium (5/20/2016) LeetCode 3 – Longest Substring Without Repeating Characters – Medium (5/20/2016) LeetCode 4 – Median of Two Sorted Arrays – Hard (8/29/2017) LeetCode 5 – Longest Palindromic Substring – Medium (8/29/2017) LeetCode 6...

7
noimage.png

Andrew-algorithm.blogspot.com

Andrew's Algorithm Solutions

No posts. No posts. Home Subscribe to: Posts ( Atom ) My other blogs Andrew's App Andrew's Complexity Andrew's Euclid Solution Andrew's Exercise Solutions Andrew's Project Euler Solutions Andrew's Spanish Lessons Andrew's Technical Thoughts About Me Andrew Au View my complete profile

8
rainykat.blogspot.com.png

Rainykat.blogspot.com

解开的都是套路

Thursday, December 21, 2017 Facebook脸家 - Lexicographical path Lexicographical path 5 / \ 3 2 / \ \ 2 4 4 \ 1 FB 面经,自底向上的 path 有【1,4,2,5】,【4,3,5】,【2,3,5】,要求按自底向上的 lexicographical order 返回排序的 path,比如在这里是 【1,4,2,5】, 【2,3,5】,【4,3,5】 Analysis: Post order, for each node keep left & right paths, merge 2 into one single path....

9
buttercola.blogspot.com.png

Buttercola.blogspot.com

Buttercola

Sunday, February 21, 2021 Lintcode 676. Decode Ways II A message containing letters from A-Z is being encoded to numbers using the following mapping way: 'A' -> 1 'B' -> 2 ... 'Z' -> 26 Beyond that, now the encoded string can also contain the character *, which can be treated...

10
noimage.png

Hrwhisper.me

细语呢喃

一个分享机器学习、算法与数据结构,个人学习心得、读书笔记、生活的博客。

11
hehejun.blogspot.com.png

Hehejun.blogspot.com

今際の国の呵呵君

Monday, January 21, 2019 [LeetCode]Subsets II Read more » Posted by 今際の国の呵呵君 at 8:57 PM No comments: Email ThisBlogThis!Share to TwitterShare to FacebookShare to Pinterest Labels: dfs, leetcode Location: Newark, CA 94560, USA [LeetCode]Subsets Read more » Posted by 今際の国の呵呵君 at 8:54 PM No comments: Email ThisBlogThis!Share to TwitterShare to...

15
noimage.png

Fangde2.blogspot.com

成吉思(刷)

Monday, May 16, 2016 LeetCode Q335: Self Crossing (hard) You are given an array x of n positive numbers. You start at point (0,0) and moves x[0] metres to the north, then x[1] metres to the west, x[2] metres to the south,x[3] metres to the east and so on. In other words, after each move your direction changes counter-clockwise. Write a one-pass algorithm...

16
bookshadow.com.png

Bookshadow.com

书影博客 | 一个文艺程序员的技术博客

最新日志

17
noimage.png

Lintcode.com

LintCode 炼码

Powerful coding training system. LintCode has the most interview problems covering Google, Facebook, Linkedin, Amazon, Microsoft and so on. We provide Chinese and English versions for coders around the world.

19
juliachencoding.blogspot.com.png

Juliachencoding.blogspot.com

Julia's coding blog - Practice makes perfect

.NET distributed system architecture (1) .NET framework (1) #401K (1) #codeKarle (1) #CodingInterviewWeekly series (1) #finance (1) #investment (1) #IRA (1) #paralysis bias (1) #recency bias (1) $10000 dollar bank letter in 2009 (1) $10000 fund (1) $10000 to $60000 in 10 years (1) $10000 wasted net income (1) $200...

21
eugenejw.github.io.png

Eugenejw.github.io

Weihan's Coding Blog

Climbing Stairs 21 Aug 2017 Algorithm DP Leetcode Easy Java Python Paint Fence 21 Aug 2017 Algorithm DP Leetcode Easy Java Sentence Screen Fitting 19 Aug 2017 Algorithm DP Leetcode Medium Java Encode and Decode Strings 18 Aug 2017 Algorithm String Leetcode Medium Java Missing Ranges 17 Aug 2017 Algorithm...

22
shibaili.blogspot.com.png

Shibaili.blogspot.com

Leetcode

Uber 面经 https://www.1point3acres.com/bbs/thread-490045-1-1.html 第一轮: 面经题, 给起始和终点时间,按月输出中间的时间段,比如给定范围 [2019-01-10, 2019-03-15], 输出 -> [2019-01-10, 2019-01-31], [2019-02-01, 2019-02-28], [2019-03-01, 2019-03-15] 要考虑不同年月份的,个人觉得有时间还是提前写写吧,各种cases挺多的 先算出头跟尾,中间的就好解决了 第二轮: 韩国大叔,给一个un sorted array,里面数unique,找出所有两两和相等的pairs, 比如[9, 4, 3, 1, 7, 12] 返回:[1, 12] & [4, 9], [3, 7]. & [1, 9], [4, 12] & [7, 9] 卡住了,最后只好暴力解,卒 暴力找出n^2, 然后map存 sum -> pairs 第三轮:...

29
mytechroad.com.png

Mytechroad.com

Lisa Tech Blog | My security road

Post navigation ← Older posts [Leetcode C++] Roman to Integer Posted on June 25, 2017 by admin Reply Problem Given a roman numeral, convert it to an integer. Input is guaranteed to be within the range from 1 to 3999. Analysis We traverse the string and add up each char...

32
noimage.png

Cqbbshuashua.blogspot.com

刷题记录

382. Linked List Random Node 获取链接 Facebook Twitter Pinterest 电子邮件 其他应用 十月 02, 2018 Problem: Given a singly linked list, return a random node's value from the linked list. Each node must have the  same probability  of being chosen. Follow up: What if the linked list is extremely large and...

34
leetcode0.blogspot.com.png

Leetcode0.blogspot.com

Tiger's leetcode solution

Tuesday, November 3, 2020 1492. The kth Factor of n -------M Given two positive integers n and k. A factor of an integer n is defined as an integer i where n % i == 0. Consider a list of all factors of n sorted in ascending order, return the kth factor in this list or return -1 if n has less than k factors.   Example 1: Input: n =...

35
noimage.png

Codesniper.blogspot.com

The Code Sniper

A blog about coding practice. Solving problems of Leetcode. No more hiding! Algorithm. Data structure.

Technologies Used by shirleyisnotageek.blogspot.com

Dns Records of shirleyisnotageek.blogspot.com

A Record: 172.217.18.1
AAAA Record: 2a00:1450:4001:80b::2001
CNAME Record: shirleyisnotageek.blogspot.com
NS Record:
SOA Record:
MX Record:
SRV Record:
TXT Record:
DNSKEY Record:
CAA Record:

Whois Detail of shirleyisnotageek.blogspot.com