Skip to content

Instantly share code, notes, and snippets.

View liamcho's full-sized avatar

Liam Hongman Cho liamcho

  • Seoul, South Korea
View GitHub Profile
@liamcho
liamcho / Q1 Answer
Last active October 2, 2019 09:03
Moloco SWE Coding Test
public class MolocoProbOne {
public static boolean equalsWhenOneCharRemoved(String x, String y) {
int xLen = x.length();
int yLen = y.length();
boolean isRemoved = false;
int xIdx = 0;