"Started by asking clarification questions regarding design constraints and desired features.
Break down the into re-usable components - HeroImg and Carousel (with 3 images rendered)
Code the components and managed the state for both in the parent component."
Akshay J. - "Started by asking clarification questions regarding design constraints and desired features.
Break down the into re-usable components - HeroImg and Carousel (with 3 images rendered)
Code the components and managed the state for both in the parent component."See full answer
"
List mergeSortedArrays(final List a, final List b) {
int aSize = a.size();
int bSize = b.size();
if (aSize == 0) {
return b;
}
if (bSize == 0) {
return a;
}
int i = 0, j = 0;
List result = new ArrayList();
while (i b.get(j)) {
result.add(b.get(j));
j++;
}
else {
result.add(a.g"
Roshan H. - "
List mergeSortedArrays(final List a, final List b) {
int aSize = a.size();
int bSize = b.size();
if (aSize == 0) {
return b;
}
if (bSize == 0) {
return a;
}
int i = 0, j = 0;
List result = new ArrayList();
while (i b.get(j)) {
result.add(b.get(j));
j++;
}
else {
result.add(a.g"See full answer
Frontend Engineer
Coding
+4 more
🧠Want an expert answer to a question? Saving questions lets us know what content to make next.