Live data from Hacker News

Viewing profile — thorwwaskeas

thorwwaskeas

HN member
Joined
Thu, Feb 03, 2022, 5:54 PM UTC
HN karma
2
Public activity
2 items

About thorwwaskeas

No profile information was provided.

Recent public activity

  1. comment
    Comment #30197557

    Since they used the tests this is not something you can do if you don't have a rich battery of tests. Perhaps many problems are something like finite automata and the program disco…

  2. comment
    Comment #30195982

    from collections import defaultdict def backspace(s1,s2): h = defaultdict(lambda:0) for x in s1: h[x] = h[x] + 1 for x in s2: h[x] = h[x] - 1 j = 0 maxj = len(s2) - 1 for x in s1: …