• Articles

    How to Cheat Orion Innovation Interviews!

    Let’s start with the obvious. No, you cannot actually cheat your way through an Orion Innovation interview. The title is sarcastic, of course. The real message is this: companies used to hire people who could code. Now, we hire people who can think. If you’re looking for a shortcut, here it is. Think better, think deeper, and think clearly. That’s the only strategy that works. Orion Innovation is the company I work for, so – Just Kidding 😊 AI Skills Are Not Optional Anymore It is no longer enough to say “I used ChatGPT” or “we integrated OpenAI APIs.” Everyone…

  • Code - Technology

    Programming Puzzle #1–Find the critical path

    Write a program in a language of your choice to find the critical path from a given set of tasks. A critical path is determined by identifying the longest stretch of dependent activities and measuring the time required to complete them from start to finish. Each circle (A-G) are tasks with specific duration (in Hours). Input: Array of task names and duration given in the diagram. Output 1. Longest path (Critical path) is A+G+B+F+C+D (42Hrs)2. Shortest path is A+B+C+D (26 Hrs)