InterviewSolution
Saved Bookmarks
| 1. |
A gardener wants to plant trees in his garden in such a way that the number of trees in each row should be the same. If there are 4 rows or 5 rows or 6 rows, then no tree will be left. Find the least |
|
Answer» 60 The LEAST NUMBER of TREES that are REQUIRED = LCM(4, 5, 6) = 60. |
|