# DGM Interview with Kevin ### Determine whether a string contains a backwards copy of another string. ```typescript const containsBackwards (a: string, b: string): boolean => ; ```