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