← Back to Directory

linktree

Small

Linktree is a technology company that provides a link-in-bio platform, allowing creators, businesses, and individuals to consolidate multiple links into a single, shareable landing page. It is widely used by social media users to direct their audiences to various content, products, and services.

2 interview notes · updated Jul 2026

linktree·Software Engineer·Technical Phone Screen

Jun 2026
Interviewed for a Software Engineer role at Linktree and got a string parsing problem that looked deceptively straightforward. The camelCase decomposition angle was a nice twist on the usual word-break stuff.
  • Given a dictionary of lowercase words and a variable name string, determine if the variable name is a valid camelCase concatenation of words from the dictionary. The first segment must be all lowercase, and each subsequent word must start with an uppercase letter followed by all lowercase.

“My first instinct was just word break DP and I started coding that before I even registered the camelCase constraint.”

View Post

linktree·Software Engineer·Onsite - Coding / Algorithms

May 2026
Coding round at Linktree for a Software Engineer role. One algorithmic problem, felt pretty standard on the surface but the modulo requirement tripped me up a bit near the end.
  • Given a positive integer array and a target difference k, count the number of index pairs (i, j) where i != j and the absolute difference of the values equals k. Return the count modulo 1,000,000,007. Array length up to 100,000, values between 1 and 1000, k between 1 and 1000.

“The value range constraint is what unlocks the efficient solution here.”

View Post