Analysis of “Quantum Computing” as a Product

BACKGROUND/PROBLEM PERSPECTIVE: After reviewing much of the available material on IBM’s Quantum and the general approach to Quantum computing, I felt somewhat conflicted. While I was able to watch the video with Dr. Talia Gershon, read about the 2019 Quantum Award Winners, and look through other featured Quantum news items, I was unable to reproduce … Read moreAnalysis of “Quantum Computing” as a Product

41 Books for Product Managers in Tech, or Founders

There are lots of lists I’ve seen on the internet, but in my opinion, this will be the best one yet, despite not having mini-pitches for any given book. All the books that appear on this list I have read personally and gotten much value from. And, while some are “better” than others, I believe … Read more41 Books for Product Managers in Tech, or Founders

Reversing a Linked List

As with many coding interview questions, the “usefulness” of a specific puzzle seems “useful” mostly in the context of getting a job. That said, if you need to use some data model to simulate some process in manufacturing, perhaps something where a “setup” requires a bunch of complicated bits and pieces to be entered “left … Read moreReversing a Linked List

Tortoise and Hare Pointers

So… this algorithm seems (at face value) rather pointless outside the context of a coding interview question. However, if you give it “a chance”, you’ll see that the Tortoise and Hare Pointer/Fast and Slow Pointer Pattern reveals the basic mechanic of identifying an Infinite Loop. While the example below does not account for what you … Read moreTortoise and Hare Pointers