#### CPPFLAGS = -std=c++17 -g3 -m64 -Wall CC = g++ LDFLAGS += -lgtest EXES := happyNumber longestCommonPrefix twoSum twoSumWithMap longestSubstrWithSet \ longestSubstrWithArray longestSubstrWithMap longestSubstrSimple validParens \ reverseInteger encodedString isomorphicStrings examRoom randomizedSet \ twoCityScheduling orderedStream invalidTransactions removeAdjacentDups \ allPathsFromSrcToTgt mergeIntervals addTwoNumbers sumOfTwoNumbers \ climbingStairs all: $(EXES) clean: $(RM) *.o $(EXES)