Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialhamdan hassan
Courses Plus Student 589 PointsDifference between efficient and effective algorithm
What is the Difference between efficient and effective algorithm?
1 Answer
Matthew Conrad
28,069 PointsAn algorithm is correct only if it solves a problem, and it is to my understanding that an algorithm's effectiveness is measured by how accurate it is in producing a result without error, whereas an algorithm's efficiency is measured in terms of how optimal the algorithm is in using resources; the two most common resources being time and space complexity (mainly RAM).