← Back to Directory

Ge

Large Enterprises

General Electric (GE) is an American multinational industrial conglomerate historically known for its wide range of products and services across aviation, power, renewable energy, and healthcare. Following restructuring, it has split into focused entities such as GE Aospace and GE Vernova, remaining a major player in industrial technology.

2 interview notes · updated Jul 2026

Ge·Software Engineer·Technical Phone Screen

Jun 2026
Two algorithmic questions for a GE software engineer role. Both were grid/string problems that look approachable but have a gap between the naive and optimal solutions that the interviewer clearly wanted you to bridge.
  • Given an M x N binary grid where 1s represent demand locations, find the single cell to place a store such that the total Manhattan distance to all demand cells is minimized. Return that minimum total distance.
  • Given a string of Y and N characters representing customer arrivals by hour, find the earliest closing time t in [0, n] that minimizes the penalty, where staying open during an N hour or closing during a Y hour each cost 1.

“I jumped straight into brute force, iterating every cell and summing distances to all 1s.”

View Post

Ge·Software Engineer·Technical Phone Screen

Apr 2026
GE software engineer interview with a stack-based visibility problem that looks deceptively straightforward until you actually try to implement it cleanly under pressure.
  • Given an array of heights representing people standing in a line, for each person compute how many people to their right they can see. A person i can see person j if everyone standing between them is shorter than both i and j.

“The visibility rule tripped me up at first.”

View Post