Golang basics, goroutines, channels Leetcode problems 1. To find 2 indexes of a sorted array, where by adding the 2 values of these index in the array should equal to the target given. 2. To find the missing character of given 2 strings. Input 1. car 2.ac Output r
Sigiloso
For the first leetcode problem, I completed the solution in O(nlog(n)) For the second leetcode problem, I used hasmap to complete it